@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --magenta: #c22f92;
  --mint: #2fd1b2;
  --yellow: #ffd761;
  --gold: #e6ad00;
  --sky: #82c9e8;
  --blush: #fae2df;
  --sand: #e8ddd6;
  --ink: #071924;
  --muted: #65727a;
  --white: #ffffff;
  --cream: #fffaf2;
  --line: rgba(7, 25, 36, 0.11);
  --shadow: 0 28px 80px rgba(7, 25, 36, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 209, 178, 0.20), transparent 27rem),
    radial-gradient(circle at 94% 8%, rgba(250, 226, 223, 0.9), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fff 48%, #f7fbfc);
  color: var(--ink);
  font-family: "Manrope", "Haffer SQ", "Avenir Next", Avenir, "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes imageBreath {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

#ateliers,
#approche,
#parcours,
#contact {
  scroll-margin-top: 122px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(7, 25, 36, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  width: 248px;
  height: 76px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-header nav a,
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 15px;
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-item {
  position: relative;
}

.site-header nav a:hover {
  background: rgba(130, 201, 232, 0.22);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 25, 36, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.dropdown a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.is-hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-cta {
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.92fr);
  gap: clamp(34px, 4.5vw, 58px);
  width: min(1180px, calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 64px) 0 clamp(56px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.approach-card h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.65rem, 3.75vw, 4.65rem);
  line-height: 1.04;
  animation: fadeUp 700ms var(--ease) both;
}

.hero h1.text-swap,
.lead.text-swap {
  animation: textSwap 430ms var(--ease) both;
}

.lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
  animation: fadeUp 800ms var(--ease) 100ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  animation: fadeUp 800ms var(--ease) 180ms both;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 950;
  border: 0;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 14px 32px rgba(194, 47, 146, 0.24);
}

.button.secondary {
  box-shadow: inset 0 0 0 1px var(--line);
  background: #fff;
  color: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(47, 209, 178, 0.32);
  border-radius: 999px;
  background: rgba(47, 209, 178, 0.12);
  color: #08735f;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  animation: fadeUp 900ms var(--ease) 120ms both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 34px -14px -16px 40px;
  border-radius: 34px;
  background: var(--yellow);
  transform: rotate(3deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0.7;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms var(--ease), transform 1200ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.is-active img {
  animation: imageBreath 5.2s var(--ease) both;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 154px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 25, 36, 0.13);
  backdrop-filter: blur(14px);
  animation: floatSoft 4.8s ease-in-out infinite;
}

.floating-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.card-top {
  top: 28px;
  left: -18px;
  border-left: 6px solid var(--mint);
}

.card-bottom {
  right: -18px;
  bottom: 58px;
  border-left: 6px solid var(--magenta);
  animation-delay: 900ms;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 1px rgba(7, 25, 36, 0.12);
  cursor: pointer;
  padding: 0;
  transition: width 250ms var(--ease), background 250ms var(--ease), transform 250ms var(--ease);
}

.hero-dots button:hover,
.hero-dots button.is-active {
  width: 28px;
  background: var(--magenta);
  transform: translateY(-1px);
}

.intro-band {
  background: var(--ink);
}

.intro-band p {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 70px) 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(140px, 15vw, 178px) 0 clamp(42px, 6vw, 78px);
  align-items: end;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  font-weight: 950;
  line-height: 1;
}

.page-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
  font-weight: 750;
  line-height: 1.55;
}

.page-hero-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.page-hero-card strong {
  font-size: 2.6rem;
  line-height: 1;
}

.page-hero-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
  line-height: 1.45;
}

.feature-grid,
.program-list,
.impact-grid,
.event-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.program-row,
.impact-card,
.event-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(7, 25, 36, 0.06);
}

.feature-card,
.impact-card,
.event-card {
  padding: 24px;
}

.feature-card strong,
.impact-card strong,
.event-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.12;
}

.feature-card p,
.impact-card p,
.event-card p,
.program-row p,
.timeline-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 730;
  line-height: 1.5;
}

.program-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.program-row span,
.event-card span {
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.program-row h2,
.timeline-item h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 950;
  line-height: 1.05;
}

.program-row .button {
  min-height: 46px;
  padding: 0 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-left: 6px solid var(--mint);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(7, 25, 36, 0.06);
}

.timeline-item b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--yellow), var(--blush));
  box-shadow: var(--shadow);
  text-align: center;
}

.page-cta h2 {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 950;
  line-height: 1.02;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.centered {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.approach-card h2,
.contact-copy h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  line-height: 1.03;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.atelier-grid article {
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 25, 36, 0.06);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.atelier-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(7, 25, 36, 0.11);
}

.atelier-grid article:nth-child(1) {
  background: linear-gradient(180deg, rgba(130, 201, 232, 0.35), #fff);
}

.atelier-grid article:nth-child(2) {
  background: linear-gradient(180deg, rgba(250, 226, 223, 0.9), #fff);
}

.atelier-grid article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 215, 97, 0.48), #fff);
}

.atelier-grid article:nth-child(4) {
  background: linear-gradient(180deg, rgba(47, 209, 178, 0.24), #fff);
}

.atelier-grid span {
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.atelier-grid h3 {
  margin: 72px 0 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 950;
  line-height: 0.98;
}

.atelier-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.approach {
  padding-top: 0;
}

.approach-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 209, 178, 0.22), transparent 18rem),
    linear-gradient(135deg, #fff, var(--blush));
  box-shadow: var(--shadow);
}

.approach-list {
  display: grid;
  gap: 14px;
}

.approach-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.70);
}

.approach-list b {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  grid-row: 1 / span 2;
}

.approach-list h3,
.approach-list p {
  margin: 0;
}

.approach-list h3 {
  font-size: 1.18rem;
  font-weight: 950;
}

.approach-list p {
  grid-column: 2;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
  max-width: 48ch;
}

.outcomes {
  padding-top: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.outcome-grid div {
  min-height: 170px;
  padding: 22px;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
}

.outcome-grid div:nth-child(2) {
  background: var(--magenta);
}

.outcome-grid div:nth-child(3) {
  background: #1497cf;
}

.outcome-grid div:nth-child(4) {
  background: #21ad8e;
}

.outcome-grid strong,
.outcome-grid span {
  display: block;
}

.outcome-grid strong {
  font-size: 1.5rem;
  font-weight: 950;
}

.outcome-grid span {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 34px;
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.contact-copy p:last-child {
  max-width: 650px;
  color: rgba(7, 25, 36, 0.72);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(7, 25, 36, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 25, 36, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(194, 47, 146, 0.12);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(7, 25, 36, 0.68);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.form-note a {
  color: var(--magenta);
  font-weight: 950;
}

@media (max-width: 860px) {
  .hero,
  .approach-card,
  .contact,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .dropdown {
    display: none;
  }

  .feature-grid,
  .event-grid,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .site-header {
    gap: 14px;
  }

  .site-header nav {
    gap: 2px;
  }

  .site-header nav a,
  .header-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .hero {
    gap: 30px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 4vw, 3.4rem);
    line-height: 1.04;
  }

  .lead {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-row {
    margin-top: 18px;
  }

  .brand {
    width: 206px;
    height: 64px;
  }

  .hero-frame {
    height: 440px;
  }

  .approach-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .approach-card h2 {
    max-width: 760px;
  }
}

@media (max-width: 1020px) {
  .atelier-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .brand {
    width: 170px;
    height: 52px;
  }

  .hero,
  .section,
  .contact,
  .page-hero,
  .page-cta {
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.7rem);
  }

  .hero-frame {
    height: 440px;
    border-width: 7px;
    border-radius: 26px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 12px;
  }

  .hero-dots {
    position: relative;
    left: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 14px;
    transform: none;
  }

  .card-top,
  .card-bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .section-head,
  .atelier-grid,
  .approach-list article,
  .outcome-grid,
  .feature-grid,
  .event-grid,
  .impact-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-band p,
  .section-head h2,
  .approach-card h2,
  .contact-copy h2,
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 3.1rem);
  }

  .contact,
  .approach-card {
    padding: 26px 18px;
    border-radius: 26px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide.is-active img {
    animation: none !important;
  }
}

/* Cut The Code inspired clean direction, adapted to La Parenthese Enchantee. */
:root {
  --ctc-bg: #f3efef;
  --ctc-ink: #1a1918;
  --ctc-panel: #151515;
  --ctc-soft: #e9f8f4;
  --ctc-lilac: #cfa3e9;
  --ctc-lilac-dark: #b777dc;
}

body {
  background: var(--ctc-bg);
  color: var(--ctc-ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 16%, rgba(47, 209, 178, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(207, 163, 233, 0.36), transparent 30rem),
    linear-gradient(180deg, #f3efef, #fff 58%, #eef9f6);
}

.top-marquee {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(1220px, calc(100% - 36px));
  min-height: 36px;
  margin: 14px auto 0;
  padding: 0 12px;
  color: rgba(26, 25, 24, 0.62);
  font-size: 0.92rem;
  font-weight: 850;
  overflow: hidden;
}

.top-marquee > span {
  position: relative;
  z-index: 2;
  color: var(--ctc-ink);
  background: var(--ctc-bg);
  white-space: nowrap;
}

.top-marquee > span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--mint);
}

.marquee-mask {
  min-width: 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 36px;
  min-width: max-content;
  line-height: 1;
  padding-left: 8px;
  will-change: transform;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(1220px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 14px 16px;
  border: 0;
  border-radius: 32px;
  background: var(--ctc-panel);
  box-shadow: 0 26px 70px rgba(26, 25, 24, 0.10);
}

.brand {
  width: 170px;
  height: 56px;
  padding: 8px 10px;
  border-radius: 18px;
  background: #fff;
}

.site-header nav {
  gap: 2px;
}

.site-header nav a,
.header-cta {
  color: #f8f4f1;
  font-size: 0.82rem;
  font-weight: 850;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.10);
}

.header-cta {
  background: var(--ctc-lilac);
  color: var(--ctc-ink);
}

.dropdown {
  border: 0;
  background: #fff;
  box-shadow: 0 20px 60px rgba(26, 25, 24, 0.14);
}

.dropdown a {
  color: rgba(26, 25, 24, 0.70);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1220px, calc(100% - 36px));
  min-height: auto;
  margin: 18px auto 0;
  padding: clamp(36px, 6vw, 78px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--ctc-panel);
  color: #f8f4f1;
  box-shadow: 0 30px 100px rgba(26, 25, 24, 0.15);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 58%;
  height: 44%;
  border-radius: 42px 42px 0 0;
  background: var(--ctc-lilac);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: #f8f4f1;
  font-size: 0.86rem;
  text-transform: none;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--ctc-lilac);
}

.hero h1 {
  max-width: 780px;
  color: #f8f4f1;
  font-size: clamp(3.05rem, 5.9vw, 6.4rem);
  font-weight: 430;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  color: rgba(248, 244, 241, 0.75);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  font-weight: 520;
}

.hero-actions {
  align-items: center;
}

.button {
  min-height: 56px;
  border-radius: 18px;
}

.button.primary {
  background: var(--ctc-lilac);
  color: var(--ctc-ink);
  box-shadow: none;
}

.button.secondary {
  border: 1px solid rgba(248, 244, 241, 0.20);
  background: rgba(248, 244, 241, 0.08);
  color: #f8f4f1;
}

.trust-row span {
  border-color: rgba(248, 244, 241, 0.18);
  background: rgba(248, 244, 241, 0.08);
  color: rgba(248, 244, 241, 0.82);
}

.partner-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  color: rgba(248, 244, 241, 0.70);
  font-size: 0.88rem;
  font-weight: 700;
}

.partner-line span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 11px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
  align-self: center;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

.hero-frame {
  position: relative;
  z-index: 1;
  height: 520px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: none;
}

.hero-slide img {
  filter: saturate(0.98) contrast(1.02);
  transform: translateY(calc(var(--scroll-y, 0) * 0.03px)) scale(1.02);
}

.floating-card {
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(26, 25, 24, 0.16);
}

.floating-card strong {
  color: var(--ctc-ink);
}

.floating-card span {
  color: rgba(26, 25, 24, 0.58);
}

.card-top {
  top: 26px;
  left: -26px;
  border-left: 0;
}

.card-bottom {
  right: -22px;
  bottom: 54px;
  border-left: 0;
}

.hero-dots {
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.hero-dots button.is-active,
.hero-dots button:hover {
  background: var(--ctc-lilac-dark);
}

.intro-band {
  background: transparent;
}

.intro-band p {
  color: var(--ctc-ink);
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  font-weight: 430;
  line-height: 0.98;
  text-align: left;
}

.page-hero {
  align-items: center;
  padding-top: clamp(118px, 12vw, 156px);
}

.section {
  border: 0;
}

.section-head h2,
.approach-card h2,
.contact-copy h2,
.page-hero h1 {
  color: var(--ctc-ink);
  font-weight: 480;
  line-height: 1;
  text-transform: none;
}

.atelier-grid article,
.feature-card,
.program-row,
.impact-card,
.event-card,
.approach-list article,
.page-hero-card,
.approach-card {
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: none;
}

.page-hero-card {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(26, 25, 24, 0.08);
}

.page-hero-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 136px;
  height: 136px;
  border-radius: 40px;
  background: var(--ctc-lilac);
  transform: rotate(8deg);
}

.page-hero-card strong,
.page-hero-card span {
  position: relative;
  z-index: 1;
}

.page-hero-card strong {
  color: var(--ctc-ink);
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 480;
}

.page-hero-card span {
  color: rgba(26, 25, 24, 0.58);
  max-width: 330px;
}

.atelier-grid article:nth-child(1),
.atelier-grid article:nth-child(2),
.atelier-grid article:nth-child(3),
.atelier-grid article:nth-child(4) {
  background: #fff;
}

.atelier-grid article:hover,
.feature-card:hover,
.event-card:hover,
.impact-card:hover,
.program-row:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(26, 25, 24, 0.10);
}

.atelier-grid h3,
.feature-card strong,
.impact-card strong,
.event-card strong,
.program-row h2,
.timeline-item h2,
.approach-list h3 {
  color: var(--ctc-ink);
}

.atelier-grid p,
.feature-card p,
.impact-card p,
.event-card p,
.program-row p,
.timeline-item p,
.approach-list p,
.page-hero p {
  color: rgba(26, 25, 24, 0.58);
}

.atelier-grid span,
.program-row span,
.event-card span {
  color: var(--magenta);
}

.approach-card {
  background: var(--ctc-soft);
}

.outcome-grid div {
  border: 0;
  background: var(--ctc-panel);
}

.contact,
.page-cta {
  background: var(--ctc-lilac);
  color: var(--ctc-ink);
}

.contact-copy h2,
.page-cta h2 {
  color: var(--ctc-ink);
}

.sticky-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--ctc-panel);
  color: #f8f4f1;
  padding: 0 20px;
  font-size: 0.84rem;
  font-weight: 850;
  box-shadow: 0 20px 50px rgba(26, 25, 24, 0.20);
}

.js .reveal {
  transform: translateY(24px);
  transition-duration: 760ms;
}

@media (max-width: 1100px) {
  .hero {
    padding: 36px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 5vw, 5.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-frame,
  .hero-visual {
    min-height: 480px;
    height: 480px;
  }

  .site-header nav a,
  .header-cta {
    font-size: 0.76rem;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .top-marquee {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero {
    width: calc(100% - 20px);
    padding: 26px 18px;
    border-radius: 26px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero-visual,
  .hero-frame {
    min-height: 500px;
    height: 500px;
  }

  .card-top,
  .card-bottom {
    position: relative;
    inset: auto;
    width: fit-content;
    margin-top: 12px;
  }
}

/* Full-width client palette refinement. */
:root {
  --client-navy: #071924;
  --client-magenta: #c22f92;
  --client-mint: #2fd1b2;
  --client-yellow: #ffd761;
  --client-sky: #82c9e8;
  --client-blush: #fae2df;
  --client-sand: #e8ddd6;
  --client-paper: #fffaf2;
}

body {
  background: var(--client-paper);
  color: var(--client-navy);
}

body::before {
  background:
    radial-gradient(circle at 0% 12%, rgba(47, 209, 178, 0.22), transparent 30rem),
    radial-gradient(circle at 100% 10%, rgba(250, 226, 223, 0.92), transparent 32rem),
    radial-gradient(circle at 88% 62%, rgba(130, 201, 232, 0.24), transparent 28rem),
    linear-gradient(180deg, #fffaf2, #fff 48%, #effbf8);
}

.top-marquee,
.site-header,
.hero,
.page-hero,
.section,
.contact,
.page-cta {
  width: calc(100% - 28px);
  max-width: none;
}

.top-marquee {
  color: rgba(7, 25, 36, 0.62);
}

.top-marquee > span {
  color: var(--client-navy);
  background: var(--client-paper);
}

.top-marquee > span::before {
  background: var(--client-mint);
}

.site-header {
  background: var(--client-navy);
  box-shadow: 0 22px 60px rgba(7, 25, 36, 0.16);
}

.brand {
  width: 210px;
  background: #fff;
}

.site-header nav a,
.header-cta {
  color: #fffaf2;
}

.site-header nav a:hover {
  background: rgba(47, 209, 178, 0.18);
}

.header-cta,
.button.primary {
  background: var(--client-magenta);
  color: #fff;
}

.header-cta:hover,
.button.primary:hover {
  background: #a82078;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.64fr);
  min-height: calc(100vh - 156px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 22%, rgba(130, 201, 232, 0.24), transparent 24rem),
    linear-gradient(135deg, #071924 0%, #0b2c3b 64%, #073447 100%);
  color: #fffaf2;
}

.hero::after {
  right: -4%;
  bottom: -20%;
  width: 48%;
  height: 42%;
  border-radius: 46px;
  background: var(--client-yellow);
  opacity: 0.95;
  transform: rotate(3deg);
}

.eyebrow,
.hero h1,
.section-head h2,
.approach-card h2,
.contact-copy h2,
.page-hero h1 {
  color: var(--client-navy);
}

.hero .eyebrow,
.hero h1 {
  color: #fffaf2;
}

.eyebrow::before {
  background: var(--client-mint);
}

.lead {
  color: rgba(255, 250, 242, 0.78);
}

.button.secondary {
  border-color: rgba(255, 250, 242, 0.24);
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
}

.trust-row span,
.partner-line span {
  border-color: rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.10);
  color: rgba(255, 250, 242, 0.86);
}

.hero-frame {
  box-shadow: 0 18px 60px rgba(7, 25, 36, 0.22);
}

.floating-card {
  box-shadow: 0 18px 44px rgba(7, 25, 36, 0.18);
}

.card-top {
  border-left: 8px solid var(--client-mint);
}

.card-bottom {
  border-left: 8px solid var(--client-magenta);
}

.hero-dots button.is-active,
.hero-dots button:hover {
  background: var(--client-magenta);
}

.intro-band {
  background: transparent;
}

.intro-band p {
  width: calc(100% - 28px);
  max-width: none;
  color: var(--client-navy);
}

.atelier-grid article,
.feature-card,
.program-row,
.impact-card,
.event-card,
.approach-list article,
.page-hero-card,
.approach-card,
.contact-form {
  box-shadow: 0 20px 54px rgba(7, 25, 36, 0.07);
}

.atelier-grid article:nth-child(1),
.program-row:nth-child(1),
.feature-card:nth-child(1) {
  background: linear-gradient(135deg, #fff, rgba(47, 209, 178, 0.14));
}

.atelier-grid article:nth-child(2),
.program-row:nth-child(2),
.feature-card:nth-child(2) {
  background: linear-gradient(135deg, #fff, rgba(255, 215, 97, 0.18));
}

.atelier-grid article:nth-child(3),
.program-row:nth-child(3),
.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #fff, rgba(130, 201, 232, 0.18));
}

.atelier-grid article:nth-child(4),
.program-row:nth-child(4) {
  background: linear-gradient(135deg, #fff, rgba(250, 226, 223, 0.72));
}

.atelier-grid h3,
.feature-card strong,
.impact-card strong,
.event-card strong,
.program-row h2,
.timeline-item h2,
.approach-list h3,
.floating-card strong,
.page-hero-card strong {
  color: var(--client-navy);
}

.atelier-grid p,
.feature-card p,
.impact-card p,
.event-card p,
.program-row p,
.timeline-item p,
.approach-list p,
.page-hero p,
.floating-card span,
.page-hero-card span {
  color: rgba(7, 25, 36, 0.62);
}

.atelier-grid span,
.program-row span,
.event-card span {
  color: var(--client-magenta);
}

.page-hero-card::after {
  background: var(--client-mint);
}

.approach-card {
  background: linear-gradient(135deg, rgba(47, 209, 178, 0.16), rgba(130, 201, 232, 0.16));
}

.outcome-grid div,
.sticky-book {
  background: var(--client-navy);
}

.contact,
.page-cta {
  background:
    radial-gradient(circle at 8% 20%, rgba(47, 209, 178, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--client-blush), #fff5f3 58%, rgba(130, 201, 232, 0.28));
  color: var(--client-navy);
}

.contact-copy h2,
.page-cta h2 {
  color: var(--client-navy);
}

.contact .eyebrow::before,
.page-cta .eyebrow::before {
  background: var(--client-magenta);
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }
}

@media (max-width: 860px) {
  .top-marquee,
  .site-header,
  .hero,
  .page-hero,
  .section,
  .contact,
  .page-cta,
  .intro-band p {
    width: calc(100% - 20px);
  }

  .brand {
    width: 178px;
  }
}

/* Requested balance pass: white menu, larger logo, restrained content width. */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 25, 36, 0.08);
  box-shadow: 0 18px 52px rgba(7, 25, 36, 0.10);
  backdrop-filter: blur(18px);
}

.brand {
  width: 252px;
  height: 72px;
  padding: 8px 12px;
  background: transparent;
}

.site-header nav {
  min-width: 0;
}

.site-header nav a,
.private-cta,
.header-cta {
  min-height: 44px;
  color: var(--client-navy);
}

.site-header nav a:hover {
  background: rgba(47, 209, 178, 0.16);
}

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

.private-cta,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.private-cta {
  border: 1px solid rgba(7, 25, 36, 0.14);
  background: #fff;
}

.private-cta:hover {
  background: rgba(130, 201, 232, 0.16);
}

.header-cta,
.button.primary {
  color: #fff;
}

.hero {
  min-height: calc(100vh - 154px);
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 0.84fr);
  align-items: center;
  padding: clamp(28px, 3.4vw, 46px);
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.45rem, 4.55vw, 5rem);
  line-height: 1.02;
}

.hero .lead {
  max-width: 590px;
  font-size: clamp(0.98rem, 1.06vw, 1.08rem);
}

.hero-frame,
.hero-visual {
  min-height: 528px;
  height: 528px;
}

.hero-visual {
  align-self: center;
  transform: translateY(-8px);
}

.intro-band p,
.section,
.contact,
.page-cta {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
}

.intro-band p {
  font-size: clamp(1.95rem, 3.8vw, 4.25rem);
}

.atelier-grid article,
.program-row {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.atelier-grid article::before,
.program-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
}

.atelier-grid article::after,
.program-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  opacity: 0;
}

.atelier-grid article:nth-child(1)::before,
.program-row#robotique::before {
  background-image: url("hero-original.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.36;
}

.atelier-grid article:nth-child(1)::after,
.program-row#robotique::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58));
}

.atelier-grid article:nth-child(2)::before,
.program-row#python::before {
  background-image: url("hero-atelier-5.png");
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: 88% 48%;
  opacity: 0.58;
}

.atelier-grid article:nth-child(2)::after,
.program-row#python::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.56));
}

.atelier-grid article:nth-child(3)::before,
.program-row#eveil::before {
  background-image: url("hero-creatif.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}

.atelier-grid article:nth-child(3)::after,
.program-row#eveil::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(232, 248, 244, 0.56));
}

.atelier-grid article:nth-child(4)::before,
.program-row#competitions::before {
  background-image: url("hero-competition.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.atelier-grid article:nth-child(4)::after,
.program-row#competitions::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 214, 0.52));
}

.private-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.private-panel .contact-form {
  margin: 0;
}

@media (max-width: 1160px) {
  .brand {
    width: 220px;
  }

  .private-cta,
  .header-cta,
  .site-header nav a {
    padding-inline: 11px;
    font-size: 0.76rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 236px;
    justify-self: center;
  }

  .header-actions {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .intro-band p,
  .section,
  .contact,
  .page-cta,
  .page-hero {
    width: calc(100% - 20px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.55rem);
  }

  .private-panel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) and (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 88px;
    padding: 10px 14px;
  }

  .brand {
    width: 204px;
    height: 64px;
    justify-self: start;
  }

  .site-header nav {
    gap: 0;
  }

  .site-header nav a,
  .private-cta,
  .header-cta {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 0.72rem;
  }

  .header-actions {
    gap: 6px;
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(396px, 0.78fr);
    min-height: calc(100vh - 150px);
  }

  .hero h1 {
    max-width: 580px;
    font-size: clamp(2.35rem, 4.1vw, 4.4rem);
  }
}

/* Cut The Code inspired typography, testimonials and footer. */
body,
button,
input,
select,
textarea {
  font-family: "Manrope", "Haffer SQ", "Avenir Next", Avenir, "Segoe UI", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
.hero h1,
.section-head h2,
.approach-card h2,
.contact-copy h2,
.page-hero h1,
.intro-band p {
  font-family: "Space Grotesk", "Telegraf", "Manrope", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1,
.section-head h2,
.page-hero h1 {
  font-weight: 400;
}

.ctc-testimonials {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  border-radius: 30px;
  background: #f3efef;
  color: var(--client-navy);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 4vw, 56px);
}

.ctc-testimonials-grid {
  display: grid;
  grid-template-columns: 0.38fr minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.ctc-subheading {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(7, 25, 36, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
}

.ctc-subheading span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--client-magenta);
}

.ctc-subheading p {
  margin: 0;
}

.ctc-testimonials-head {
  max-width: 620px;
}

.ctc-testimonials-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Telegraf", "Manrope", Arial, sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.ctc-testimonials-head p {
  margin: 14px 0 0;
  color: rgba(7, 25, 36, 0.64);
  font-size: 1.05rem;
}

.ctc-testimonials-list {
  grid-column: 2;
  display: flex;
  gap: 16px;
  margin-top: 26px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ctc-testimonial-card {
  position: relative;
  display: flex;
  min-width: min(420px, 82vw);
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(7, 25, 36, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  animation: testimonialSlide 28s linear infinite;
}

.ctc-testimonials-list:hover .ctc-testimonial-card {
  animation-play-state: paused;
}

@keyframes testimonialSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% * var(--testimonial-count, 4) - (16px * var(--testimonial-count, 4))));
  }
}

.ctc-testimonial-card::before {
  content: "R";
  position: absolute;
  right: -6px;
  top: -24px;
  color: rgba(194, 47, 146, 0.14);
  font-family: "Space Grotesk", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}

.ctc-testimonial-card.is-green::before {
  content: "C";
  color: rgba(47, 209, 178, 0.18);
}

.ctc-testimonial-card.is-yellow::before {
  content: "T";
  color: rgba(255, 215, 97, 0.35);
}

.ctc-testimonial-card.is-sky::before {
  content: "E";
  color: rgba(130, 201, 232, 0.28);
}

.ctc-testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--client-navy);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.45;
}

.ctc-testimonial-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  margin-top: 28px;
}

.ctc-testimonial-card b {
  color: var(--client-navy);
  font-size: 0.96rem;
}

.ctc-testimonial-card span {
  color: rgba(7, 25, 36, 0.55);
  font-size: 0.86rem;
  font-weight: 600;
}

.ctc-footer {
  position: relative;
  width: calc(100% - 28px);
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--client-navy);
  color: #fffaf2;
}

.ctc-footer-marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  background: var(--client-magenta);
  color: #fff;
}

.ctc-footer-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  animation: marquee 28s linear infinite;
}

.ctc-footer-marquee span {
  font-family: "Space Grotesk", "Telegraf", sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.55rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.ctc-footer-marquee b {
  color: var(--client-yellow);
  font-size: clamp(0.9rem, 1.55vw, 1.5rem);
  line-height: 1;
}

.ctc-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(230px, 0.72fr) minmax(290px, 1fr);
  gap: clamp(20px, 3vw, 52px);
  padding: clamp(44px, 8vw, 96px) clamp(22px, 5vw, 70px);
}

.ctc-footer-brand img {
  width: min(204px, 48vw);
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.ctc-footer-brand h2 {
  max-width: 280px;
  margin: 18px 0 0;
  color: #fffaf2;
  font-family: "Space Grotesk", "Telegraf", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.ctc-footer-news {
  align-self: start;
}

.ctc-footer-news h3,
.ctc-footer-links h4 {
  margin: 0 0 18px;
  color: rgba(255, 250, 242, 0.62);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.ctc-footer-news form {
  display: grid;
  gap: 10px;
}

.ctc-footer-news input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.08);
  color: #fff;
  padding: 0 16px;
}

.ctc-footer-news input::placeholder {
  color: rgba(255, 250, 242, 0.48);
}

.ctc-footer-news button {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: var(--client-mint);
  color: var(--client-navy);
  font-weight: 850;
}

.ctc-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ctc-footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ctc-footer-links a {
  color: #fffaf2;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.ctc-footer-links a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--client-magenta);
}

.ctc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  padding: 18px clamp(22px, 5vw, 70px);
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .ctc-testimonials-grid,
  .ctc-testimonials-list,
  .ctc-footer-inner,
  .ctc-footer-links {
    grid-template-columns: 1fr;
  }

  .ctc-testimonials-list {
    grid-column: 1;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .ctc-footer-inner {
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  }

  .ctc-footer-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 250, 242, 0.12);
    padding-top: 28px;
  }
}

@media (max-width: 680px) {
  .ctc-testimonials,
  .ctc-footer {
    width: calc(100% - 20px);
    border-radius: 24px;
  }

.ctc-footer-bottom {
    flex-direction: column;
  }
}

/* Stronger workshop image cards. */
.atelier-grid article {
  min-height: 280px;
  justify-content: flex-end;
  background: var(--client-navy);
}

.atelier-grid article::before {
  opacity: 0.62 !important;
  transform: scale(1.02);
}

.atelier-grid article::after {
  opacity: 1 !important;
  background:
    linear-gradient(180deg, rgba(7, 25, 36, 0.08), rgba(7, 25, 36, 0.84)),
    linear-gradient(90deg, rgba(7, 25, 36, 0.80), rgba(7, 25, 36, 0.18)) !important;
}

.atelier-grid article:nth-child(2)::before {
  opacity: 0.70 !important;
}

.atelier-grid article h3,
.atelier-grid article p {
  color: #fffaf2 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.atelier-grid article span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--client-magenta) !important;
  padding: 7px 11px;
  font-size: 0.75rem;
}

.atelier-grid article:nth-child(2) span {
  color: var(--client-navy) !important;
  background: var(--client-yellow);
}

.atelier-grid article:nth-child(3) span {
  color: var(--client-navy) !important;
  background: var(--client-mint);
}

.atelier-grid article:nth-child(4) span {
  color: var(--client-navy) !important;
  background: var(--client-sky);
}

/* Top navigation logo requested +10%. */
.site-header .brand {
  width: 277px;
}

@media (max-width: 1160px) {
  .site-header .brand {
    width: 242px;
  }
}

@media (min-width: 861px) and (max-width: 980px) {
  .site-header .brand {
    width: 224px;
  }
}

@media (max-width: 860px) {
  .site-header .brand {
    width: 196px;
  }
}

/* Global navigation and developed page sections. */
.site-header {
  z-index: 1000;
  overflow: visible;
}

.site-header nav {
  overflow: visible;
}

.site-header nav a,
.private-cta,
.header-cta {
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.nav-item {
  display: inline-flex;
  align-items: center;
}

.nav-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 250px);
  height: 14px;
}

.nav-item > a {
  gap: 7px;
}

.nav-item > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
}

.dropdown {
  z-index: 1200;
  min-width: 250px;
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(7, 25, 36, 0.16);
}

.dropdown a {
  min-height: 36px;
  border-radius: 12px;
  color: rgba(7, 25, 36, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.045em;
}

.dropdown a:hover {
  color: var(--client-navy);
  background: rgba(47, 209, 178, 0.16);
}

.menu-right .dropdown {
  right: auto;
  left: 0;
  transform: translateY(0);
}

.menu-right:hover .dropdown,
.menu-right:focus-within .dropdown,
.menu-right.is-hover .dropdown {
  transform: translateY(0);
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

.story-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(7, 25, 36, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 25, 36, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.story-panel p {
  margin: 0;
  color: rgba(7, 25, 36, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 650;
  line-height: 1.65;
}

.values-section .feature-card,
.ladder-grid article,
.portal-grid article {
  border: 1px solid rgba(7, 25, 36, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 243, 0.72)),
    #fff;
}

.ladder-grid,
.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ladder-grid article,
.portal-grid article {
  min-height: 230px;
  border-radius: 24px;
  padding: 24px;
}

.ladder-grid span,
.portal-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--client-mint);
  color: var(--client-navy);
  font-weight: 950;
}

.ladder-grid article:nth-child(2) span,
.portal-grid article:nth-child(2) span {
  background: var(--client-yellow);
}

.ladder-grid article:nth-child(3) span,
.portal-grid article:nth-child(3) span {
  background: var(--client-sky);
}

.ladder-grid article:nth-child(4) span,
.portal-grid article:nth-child(4) span {
  background: var(--client-magenta);
  color: #fff;
}

.ladder-grid h3,
.portal-grid h3 {
  margin: 28px 0 10px;
  color: var(--client-navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.ladder-grid p,
.portal-grid p {
  margin: 0;
  color: rgba(7, 25, 36, 0.68);
  font-weight: 650;
  line-height: 1.55;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.journal-grid article {
  overflow: hidden;
  border: 1px solid rgba(7, 25, 36, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 25, 36, 0.08);
}

.journal-grid img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.journal-grid div {
  padding: 22px;
}

.journal-grid span {
  color: var(--client-magenta);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.journal-grid h3 {
  margin: 8px 0 10px;
  color: var(--client-navy);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.journal-grid p {
  margin: 0;
  color: rgba(7, 25, 36, 0.66);
  font-weight: 650;
  line-height: 1.55;
}

.portal-grid-section {
  padding-top: clamp(38px, 6vw, 76px);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-header nav {
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .site-header nav {
    width: 100%;
    justify-content: center;
    overflow: visible;
  }

  .dropdown {
    display: grid;
    top: 100%;
    right: auto;
    left: 0;
    min-width: min(280px, calc(100vw - 40px));
    transform: translateY(0);
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown,
  .nav-item.is-hover .dropdown,
  .nav-item.is-open .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .split-story,
  .ladder-grid,
  .journal-grid,
  .portal-grid {
    grid-template-columns: 1fr;
  }
}

/* Clean-up pass: balanced page sections and a stronger top logo. */
html,
body {
  overflow-x: hidden;
}

.site-header .brand {
  width: 360px;
  height: 92px;
}

.site-header .brand img {
  object-fit: contain;
}

.split-story {
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-story .section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: center;
  min-width: 0;
}

.split-story .section-head .eyebrow {
  margin: 0;
}

.split-story .section-head h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.3rem, 3vw, 3.65rem);
  line-height: 1.02;
  text-wrap: balance;
}

.split-story .story-panel {
  max-width: 760px;
  justify-self: end;
}

.story-panel p {
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 700;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .site-header .brand {
    width: 330px;
    height: 84px;
  }
}

@media (max-width: 980px) {
  .site-header .brand {
    width: 320px;
    height: 82px;
  }

  .split-story {
    grid-template-columns: 1fr;
  }

  .split-story .section-head h2 {
    max-width: 760px;
    font-size: clamp(2.05rem, 6vw, 3.25rem);
    line-height: 1.02;
  }

  .split-story .story-panel {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .site-header .brand {
    width: 260px;
    height: 72px;
  }
}

/* Stronger inner-page heroes: image, right-side icon, and clearer hierarchy. */
body:not(.home-page) .page-hero {
  --hero-img: url("hero-original.jpg");
  --hero-accent: var(--client-mint);
  --hero-symbol: "STEM";
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1240px, calc(100% - 32px));
  min-height: clamp(430px, 48vw, 620px);
  margin-top: 18px;
  border-radius: 34px;
  padding: clamp(116px, 11vw, 152px) clamp(24px, 5vw, 70px) clamp(44px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.48fr);
  align-items: end;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.66) 100%),
    var(--hero-img) center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(7, 25, 36, 0.08);
}

body:not(.home-page) .page-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% 42%;
  z-index: -1;
  height: 62%;
  border-radius: 999px 0 0 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--hero-accent) 70%, white), rgba(255, 255, 255, 0));
  opacity: 0.55;
  transform: rotate(-4deg);
}

body:not(.home-page) .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--hero-accent) 26%, transparent), transparent 28%),
    linear-gradient(180deg, transparent, rgba(232, 248, 244, 0.7));
}

body:not(.home-page) .page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 4.6vw, 5.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

body:not(.home-page) .page-hero > div > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(7, 25, 36, 0.70);
}

body:not(.home-page) .page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--client-navy);
}

body:not(.home-page) .page-hero .eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hero-accent);
}

body:not(.home-page) .page-hero-card {
  position: relative;
  min-height: 270px;
  align-content: end;
  justify-self: end;
  width: min(360px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 90px rgba(7, 25, 36, 0.13);
  backdrop-filter: blur(18px);
}

body:not(.home-page) .page-hero-card::before {
  content: var(--hero-symbol);
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 32px;
  background: var(--hero-accent);
  color: var(--client-navy);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(5deg);
}

body:not(.home-page) .page-hero-card::after {
  display: none;
}

body:not(.home-page) .page-hero-card strong {
  color: var(--client-navy);
  font-size: clamp(2.15rem, 3vw, 3.25rem);
  font-weight: 520;
}

body:not(.home-page) .page-hero-card span {
  max-width: 260px;
  color: rgba(7, 25, 36, 0.68);
  font-size: 0.98rem;
}

body:not(.home-page) .page-hero-about {
  --hero-img: url("hero-creatif.jpg");
  --hero-accent: var(--client-mint);
  --hero-symbol: "STEM";
}

body:not(.home-page) .page-hero-workshops {
  --hero-img: url("hero-original.jpg");
  --hero-accent: var(--client-yellow);
  --hero-symbol: "4";
}

body:not(.home-page) .page-hero-news {
  --hero-img: url("hero-atelier-2.jpg");
  --hero-accent: var(--client-sky);
  --hero-symbol: "NEWS";
}

body:not(.home-page) .page-hero-events {
  --hero-img: url("hero-competition.jpg");
  --hero-accent: var(--client-magenta);
  --hero-symbol: "LIVE";
}

body:not(.home-page) .page-hero-impact {
  --hero-img: url("hero-atelier-4.png");
  --hero-accent: var(--client-mint);
  --hero-symbol: "STEM+";
}

body:not(.home-page) .page-hero-contact {
  --hero-img: url("hero-original.jpg");
  --hero-accent: var(--client-yellow);
  --hero-symbol: "GO";
}

body:not(.home-page) .page-hero-private {
  --hero-img: url("hero-atelier-3.jpeg");
  --hero-accent: var(--client-sky);
  --hero-symbol: "PRIVÉ";
}

.story-panel .button.secondary {
  border-color: rgba(7, 25, 36, 0.12);
  background: var(--client-navy);
  color: #fff;
}

.story-panel .button.secondary:hover {
  background: var(--client-magenta);
  color: #fff;
}

@media (max-width: 980px) {
  body:not(.home-page) .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(116px, 18vw, 144px);
  }

  body:not(.home-page) .page-hero-card {
    justify-self: stretch;
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  body:not(.home-page) .page-hero {
    width: calc(100% - 20px);
    border-radius: 26px;
    padding: 104px 20px 30px;
  }

  body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.55rem);
  }

  body:not(.home-page) .page-hero-card::before {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    font-size: 1rem;
  }
}

/* Footer balance pass. */
.ctc-footer {
  width: min(100% - 24px, 1960px);
}

.ctc-footer-marquee div {
  gap: 20px;
  padding: 10px 0;
}

.ctc-footer-marquee span {
  font-size: clamp(0.92rem, 1.25vw, 1.28rem);
}

.ctc-footer-inner {
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 0.88fr) minmax(680px, 1.5fr);
  gap: clamp(32px, 4vw, 76px);
  align-items: start;
  padding: clamp(48px, 6vw, 84px) clamp(34px, 5vw, 86px);
}

.ctc-footer-brand img {
  width: min(220px, 50vw);
}

.ctc-footer-brand h2 {
  max-width: 360px;
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  line-height: 1.18;
}

.ctc-footer-news {
  max-width: 520px;
}

.ctc-footer-news input {
  min-height: 50px;
}

.ctc-footer-news button {
  min-height: 52px;
}

.ctc-footer-links {
  grid-template-columns: minmax(150px, 0.72fr) minmax(150px, 0.72fr) minmax(300px, 1.15fr);
  gap: clamp(26px, 3vw, 52px);
}

.ctc-footer-links h4 {
  margin-bottom: 20px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ctc-footer-links a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  font-size: 0.94rem;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

.ctc-footer-links a::before {
  flex: 0 0 auto;
  margin-top: 0.42em;
  margin-right: 0;
}

.ctc-footer-links div:last-child a {
  white-space: nowrap;
}

.ctc-footer-links div:last-child a[href^="mailto:"] {
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  letter-spacing: -0.01em;
}

@media (max-width: 1320px) {
  .ctc-footer-inner {
    grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1fr);
  }

  .ctc-footer-links {
    grid-column: 1 / -1;
    grid-template-columns: minmax(180px, 0.8fr) minmax(180px, 0.8fr) minmax(320px, 1.1fr);
    border-top: 1px solid rgba(255, 250, 242, 0.12);
    padding-top: 30px;
  }
}

@media (max-width: 820px) {
  .ctc-footer-inner,
  .ctc-footer-links {
    grid-template-columns: 1fr;
  }

  .ctc-footer-links div:last-child a {
    white-space: normal;
  }
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(720px, 100%);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 90px rgba(7, 25, 36, 0.12);
  padding: clamp(28px, 6vw, 64px);
  text-align: center;
}

.thanks-card img {
  width: min(300px, 72vw);
}

.thanks-card h1 {
  margin: 14px auto;
  color: var(--client-navy);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.thanks-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 24px;
  color: rgba(7, 25, 36, 0.68);
  font-weight: 750;
  line-height: 1.55;
}

/* Parent portal */
.parent-portal-page {
  background:
    linear-gradient(135deg, rgba(47, 209, 178, 0.10), transparent 34%),
    linear-gradient(315deg, rgba(130, 201, 232, 0.22), transparent 36%),
    #fffaf7;
}

.parent-login,
.parent-dashboard-hero,
.parent-stats,
.parent-grid {
  width: min(100% - 36px, 1440px);
  margin-inline: auto;
}

.parent-login {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: clamp(120px, 15vw, 180px) 0 70px;
}

.parent-login-copy h1,
.parent-dashboard-hero h1 {
  margin: 0;
  max-width: 820px;
  color: var(--client-navy);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.parent-login-copy p:not(.eyebrow),
.parent-dashboard-hero p {
  max-width: 650px;
  color: rgba(7, 25, 36, 0.66);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 760;
  line-height: 1.55;
}

.parent-login-card,
.parent-workshop-card,
.parent-panel,
.parent-stats article {
  border: 1px solid rgba(7, 25, 36, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 80px rgba(7, 25, 36, 0.09);
}

.parent-login-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.parent-login-card img {
  width: min(260px, 70vw);
}

.parent-login-card label,
.parent-comment-form label {
  display: grid;
  gap: 8px;
  color: rgba(7, 25, 36, 0.68);
  font-weight: 850;
}

.parent-login-card input,
.parent-comment-form select,
.parent-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 25, 36, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--client-navy);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.parent-login-card p:not(.portal-alert) {
  margin: 0;
  color: rgba(7, 25, 36, 0.54);
  font-size: 0.9rem;
  font-weight: 750;
}

.portal-alert,
.portal-success {
  width: min(100% - 36px, 1440px);
  margin: 0 auto 18px;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 850;
}

.portal-alert {
  background: #ffe7ee;
  color: #a4174d;
}

.portal-success {
  background: #e6fbf5;
  color: #087e69;
}

.parent-dashboard-hero {
  display: flex;
  min-height: 42vh;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(128px, 14vw, 170px) 0 36px;
}

.parent-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.parent-stats article {
  padding: 20px;
}

.parent-stats strong {
  display: block;
  color: var(--client-navy);
  font-size: 2.6rem;
  line-height: 1;
}

.parent-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(7, 25, 36, 0.62);
  font-weight: 850;
}

.parent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 20px;
  padding-bottom: 70px;
}

.parent-main-col,
.parent-side-col {
  display: grid;
  gap: 20px;
  align-content: start;
}

.parent-workshop-card,
.parent-panel {
  padding: clamp(22px, 3vw, 34px);
}

.parent-workshop-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.parent-workshop-card h2,
.parent-panel h2 {
  margin: 0;
  color: var(--client-navy);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1;
}

.parent-workshop-card header span,
.parent-panel header p {
  display: block;
  margin-top: 8px;
  color: rgba(7, 25, 36, 0.62);
  font-weight: 850;
}

.parent-radial {
  display: grid;
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle closest-side, #fff 67%, transparent 70%),
    conic-gradient(var(--client-mint) calc(var(--value) * 1%), #e9f0f2 0);
}

.parent-radial b {
  color: var(--client-navy);
  font-size: 1.25rem;
}

.parent-program {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.parent-program span {
  border: 1px solid rgba(7, 25, 36, 0.08);
  border-radius: 16px;
  background: #f5f8f8;
  color: rgba(7, 25, 36, 0.68);
  font-weight: 850;
  padding: 12px;
}

.parent-program .is-done {
  background: rgba(47, 209, 178, 0.16);
  color: var(--client-navy);
  box-shadow: inset 4px 0 0 var(--client-mint);
}

.parent-scores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.parent-scores span,
.parent-note,
.parent-list div,
.parent-notifications div,
.parent-comments-list div {
  border-radius: 18px;
  background: #f7fbfb;
  padding: 14px;
}

.parent-scores span {
  color: rgba(7, 25, 36, 0.62);
  font-weight: 850;
}

.parent-scores b {
  display: block;
  margin-top: 6px;
  color: var(--client-magenta);
  font-size: 1.3rem;
}

.parent-note {
  margin-top: 14px;
}

.parent-note strong,
.parent-list strong,
.parent-notifications strong,
.parent-comments-list strong {
  display: block;
  color: var(--client-navy);
}

.parent-note p,
.parent-list p,
.parent-notifications p,
.parent-comments-list p {
  margin: 8px 0 0;
  color: rgba(7, 25, 36, 0.64);
  font-weight: 760;
  line-height: 1.5;
}

.parent-comment-form,
.parent-list,
.parent-notifications,
.parent-comments-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.parent-list span,
.parent-list small,
.parent-notifications span,
.parent-comments-list em {
  display: block;
  margin-top: 5px;
  color: rgba(7, 25, 36, 0.58);
  font-weight: 780;
  line-height: 1.35;
}

.parent-list a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--client-magenta);
  font-weight: 950;
}

@media (max-width: 980px) {
  .parent-login,
  .parent-grid {
    grid-template-columns: 1fr;
  }

  .parent-dashboard-hero {
    display: grid;
  }

  .parent-stats,
  .parent-program,
  .parent-scores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .parent-stats,
  .parent-program,
  .parent-scores,
  .parent-workshop-card header {
    grid-template-columns: 1fr;
  }

  .parent-workshop-card header {
    display: grid;
  }
}
