/* ─────────────────────────────────────────
   LITTLE MISS COOKIE CRUMBLE
   style.css — Sunny & Wholesome system
   Teal base · sunny-yellow moments · coral CTA · Nunito
   ───────────────────────────────────────── */

/* ─── RESET ─── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1a3838;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}


/* ─── TOKENS ─── */

:root {
  /* Teal */
  --teal: #168f89;
  --teal-deep: #137a7a;
  --teal-mid: #5ccabf;
  --teal-soft: #c4f0ea;
  --teal-wash: #f2fbf9;
  --teal-band: #e4f7f4;

  /* Sunshine yellow */
  --sun: #f5b820;
  --sun-deep: #8a5b00;
  --sun-soft: #ffe2a8;
  --sun-band: #fff7e8;
  --sun-chip: #fff0d4;

  /* Coral */
  --coral: #c94f2f;
  --coral-deep: #a83b22;
  --coral-soft: #ffe0d4;

  /* Neutrals */
  --ink: #1a3838;
  --ink-mid: #46615d;
  --ink-soft: #5c6b6b;
  --ink-faint: #8a9a9a;
  --paper: #ffffff;
  --line: #eef1ea;
  --line-warm: #f0eadf;

  --nav-h: 70px;
}


/* ─── TYPOGRAPHY ─── */

.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}

.sec-title {
  margin-bottom: 10px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 800;
}

.sec-title .ac {
  color: var(--teal);
}

.sec-sub {
  margin-bottom: 14px;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 500;
}


/* ─── LAYOUT ─── */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 80px 0;
}

.section.teal-wash {
  background: var(--teal-wash);
}

.section.white {
  background: var(--paper);
}


/* ─── PILL ─── */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border: 1px solid var(--teal-soft);
  border-radius: 30px;
  background: #fff;
  color: var(--teal-deep);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}


/* ─── BUTTONS ─── */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 30px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 24px;
  border: 1.5px solid var(--teal-soft);
  border-radius: 30px;
  background: transparent;
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: var(--teal-wash);
  transform: translateY(-2px);
}


/* ─── NAV ─── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(27, 168, 160, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  flex-shrink: 0;
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 30px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--teal-deep);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ─── HERO ─── */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--teal-band);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob.b1 {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -60px;
  background: var(--teal-soft);
  opacity: 0.7;
}

.hero-blob.b2 {
  width: 180px;
  height: 180px;
  right: 220px;
  bottom: -50px;
  background: var(--sun-soft);
  opacity: 0.55;
}

.hero-blob.b3 {
  width: 110px;
  height: 110px;
  top: 120px;
  right: 320px;
  background: var(--coral-soft);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 40px 80px;
}

.hero-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

.hero-title .ac {
  color: var(--teal);
}

.hero-sub {
  max-width: 460px;
  margin-bottom: 28px;
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.studio-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  color: var(--ink);
  font-size: 13px;
}

.studio-caption span {
  color: var(--teal-mid);
}


/* ─── HERO IMAGE ─── */

.studio-art {
  width: 100%;
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(48, 51, 51, 0.08);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 420px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 420px;
  border-radius: 22px;
  background: #f2ece1;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}


/* ─── STAT STRIP ─── */

.stat-strip {
  display: flex;
  background: var(--paper);
  border-bottom: 1px solid var(--line-warm);
}

.stat {
  flex: 1;
  padding: 24px 16px;
  border-right: 1px solid var(--line-warm);
  text-align: center;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.stat-num.t {
  color: var(--teal);
}

.stat-num.c {
  color: var(--coral);
}

.stat-num.y {
  color: var(--sun);
}

.stat-label {
  margin-top: 6px;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}


/* ─── TRUST CHIPS ─── */

.chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-band {
  padding: 30px 0;
  border-bottom: 1px solid var(--line-warm);
  background: var(--paper);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 600;
}

.chip-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.chip-ico.t {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.chip-ico.y {
  background: var(--sun-chip);
  color: var(--sun-deep);
}

.chip-ico.c {
  background: var(--coral-soft);
  color: var(--coral-deep);
}


/* ─── PAGE HERO ─── */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--teal-band);
}

.page-hero .hero-blob.b1 {
  width: 300px;
  height: 300px;
  top: -70px;
  right: -50px;
}

.page-hero .hero-blob.b2 {
  width: 150px;
  height: 150px;
  right: 180px;
  bottom: -40px;
}

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

.page-hero-title {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 800;
}

.page-hero-title .ac {
  color: var(--teal);
}

.page-hero-sub {
  max-width: 540px;
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}


/* ─── BENEFIT CARDS ─── */

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bc {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bc:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 168, 160, 0.1);
}

.bc-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
}

.bc-ico.t {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.bc-ico.y {
  background: var(--sun-chip);
  color: var(--sun-deep);
}

.bc-ico.c {
  background: var(--coral-soft);
  color: var(--coral-deep);
}

.bc-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.bc-body {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.bc-source {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 600;
}


/* ─── WHO CARDS ─── */

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.who-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 168, 160, 0.12);
}

.who-head {
  padding: 20px 22px;
}

.who-head.t {
  background: var(--teal-soft);
}

.who-head.y {
  background: var(--sun-soft);
}

.who-head.c {
  background: var(--coral-soft);
}

.who-tag {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.who-head.t .who-tag,
.who-head.t .who-name {
  color: var(--teal-deep);
}

.who-head.y .who-tag,
.who-head.y .who-name {
  color: var(--sun-deep);
}

.who-head.c .who-tag,
.who-head.c .who-name {
  color: var(--coral-deep);
}

.who-name {
  font-size: 20px;
  font-weight: 800;
}

.who-body {
  padding: 20px 22px;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.who-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}


/* ─── WORKSHOP CARDS ─── */

.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.section-link {
  margin-top: 28px;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-block;
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ws-card {
  overflow: hidden;
  border: 1.5px solid var(--line-warm);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(27, 168, 160, 0.14);
}

.ws-head {
  padding: 22px 22px 18px;
}

.ws-head.t {
  background: var(--teal-soft);
}

.ws-head.y {
  background: var(--sun-soft);
}

.ws-head.c {
  background: var(--coral-soft);
}

.ws-tier {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.ws-head.t .ws-tier,
.ws-head.t .ws-name {
  color: var(--teal-deep);
}

.ws-head.y .ws-tier,
.ws-head.y .ws-name {
  color: var(--sun-deep);
}

.ws-head.c .ws-tier,
.ws-head.c .ws-name {
  color: var(--coral-deep);
}

.ws-name {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 800;
}

.ws-tagline {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.ws-head.t .ws-tagline {
  color: #2a8a84;
}

.ws-head.y .ws-tagline {
  color: #9a7016;
}

.ws-head.c .ws-tagline {
  color: #c4593a;
}

.ws-body {
  padding: 20px 22px;
}

.ws-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ws-k {
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 600;
}

.ws-v {
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 700;
}

.ws-divider {
  margin: 16px 0;
  border: none;
  border-top: 1px solid var(--line-warm);
}

.ws-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
}

.ws-badge.t {
  background: var(--teal-soft);
  color: var(--teal-deep);
  border: 1px solid var(--teal-soft);
}

.ws-badge.y {
  background: var(--sun-soft);
  color: var(--sun-deep);
  border: 1px solid var(--sun-soft);
}

.ws-badge.c {
  background: var(--coral-soft);
  color: var(--coral-deep);
  border: 1px solid var(--coral-soft);
}

.ws-foot {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.ws-foot a {
  color: var(--teal-deep);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--teal-soft);
}


/* ─── STEPS ─── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-num {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 20px;
  font-weight: 800;
}

.step-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.step-body {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}


/* ─── GALLERY INTRO ─── */

.gal-intro {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}


/* ─── PROJECT SHOWCASE CAROUSEL ─── */

.project-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 8px auto 0;
  padding: 0 42px 42px;
  overflow: hidden;
}

.project-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 430px;
}

.project-slide {
  flex: 0 0 22%;
  opacity: 0.42;
  transform: scale(0.82);
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    flex-basis 0.35s ease;
}

.project-slide.active {
  flex-basis: 52%;
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  cursor: default;
}

.project-slide-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--teal-soft);
  border-radius: 20px;
  background: var(--teal-wash);
  box-shadow: 0 8px 26px rgba(27, 168, 160, 0.08);
}

.project-slide.active .project-slide-image-wrap {
  cursor: zoom-in;
  box-shadow: 0 16px 38px rgba(27, 168, 160, 0.14);
}

.project-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-slide-content {
  display: none;
}

.project-slide.active .project-slide-content {
  display: block;
  padding: 18px 20px 0;
  animation: fadeIn 0.25s ease;
}

.project-slide-title {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
}

.project-slide-text {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.project-slide-attr {
  margin-top: 8px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 600;
}


/* ─── CAROUSEL ARROWS ─── */

.carousel-arrow {
  position: absolute;
  top: 34%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-deep);
  font-size: 32px;
  line-height: 1;
  opacity: 0.42;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(26, 56, 56, 0.08);
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.carousel-prev {
  left: 2px;
}

.carousel-next {
  right: 2px;
}

.project-carousel:hover .carousel-arrow {
  opacity: 0.72;
}

.carousel-arrow:hover {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.92);
}

.carousel-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.carousel-next:hover {
  transform: translateY(-50%) translateX(2px);
}


/* ─── CAROUSEL DOTS ─── */

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--teal-soft);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: var(--teal);
  transform: scale(1.35);
}


/* ─── LIGHTBOX ─── */

body.lightbox-locked {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(26, 56, 56, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  max-width: 900px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  background: var(--teal-wash);
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}


/* ─── KIDS' GALLERY ─── */

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.g-cell {
  width: 100%;
  padding: 0;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--teal-soft);
  border-radius: 18px;
  background: var(--teal-wash);
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.g-cell:hover {
  transform: scale(1.02);
  border-color: var(--teal-mid);
}

.g-cell.active {
  border-color: var(--teal);
}

.g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
}

.g-ph img {
  width: 100%;
  height: 72%;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

.g-yarn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(
    var(--teal-mid),
    var(--sun),
    var(--coral),
    var(--teal-mid)
  );
  opacity: 0.4;
  transition: opacity 0.2s;
}

.g-cell:hover .g-yarn,
.g-cell.active .g-yarn {
  opacity: 0.65;
}

.g-lbl {
  color: var(--teal-deep);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.g-tap {
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
}

.g-expand {
  display: none;
  padding: 22px 26px;
  margin-bottom: 14px;
  border: 1px solid var(--sun-soft);
  border-radius: 18px;
  background: var(--sun-band);
  animation: fadeIn 0.25s ease;
}

.g-expand.open {
  display: block;
}

.g-story-media {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 420px;
  margin: 0 auto 4px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.g-exp-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}


/* ─── TESTIMONIALS ─── */

.testimonial-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  margin-bottom: 24px;
}

.testimonial {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line-warm);
  border-radius: 20px;
  background: #fff;
}

.g-exp-body {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.testimonial .g-exp-body {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.g-exp-attr {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 600;
}

.testimonial .g-exp-attr {
  margin: 0;
}


/* ─── GALLERY QUOTE ─── */

.gal-quote {
  margin-top: 8px;
  padding: 24px 28px;
  border: 1px solid var(--teal-soft);
  border-radius: 18px;
  background: var(--teal-wash);
}

.gal-qt {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  font-style: italic;
}

.gal-qa {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}


/* ─── MANIFESTO / ABOUT ─── */

.about-intro {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.manifesto {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.mf-row.sun {
  border-color: var(--sun-soft);
  background: var(--sun-band);
}

.mf-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 20px;
  font-weight: 800;
}

.mf-row.sun .mf-num {
  background: var(--sun-soft);
  color: var(--sun-deep);
}

.mf-belief {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.mf-body {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.about-sig-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.about-hands {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal-soft);
  border-radius: 18px;
  background: var(--teal-wash);
}

.about-hands .g-yarn {
  width: 34px;
  height: 34px;
  opacity: 0.55;
}

.about-sig {
  color: var(--teal-deep);
  font-size: 18px;
  font-weight: 800;
}

.about-sig-sub {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}


/* ─── SUNNY CTA ─── */

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  margin-top: 30px;
}

.proof-section {
  background: var(--sun-band);
}

.proof-image-wrap {
  overflow: hidden;
  border: 1px solid var(--line-warm);
  border-radius: 22px;
  background: var(--sun-band);
}

.proof-image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #fff;
}

.proof-caption {
  display: block;
  padding: 12px 16px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.teacher-note {
  padding: 18px 20px;
  border: 1px solid var(--teal-soft);
  border-radius: 16px;
  background: #fff;
}

.teacher-note p {
  margin-bottom: 12px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.65;
}

.teacher-note .text-link {
  margin-right: 18px;
  margin-bottom: 4px;
}

.quote-card {
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  border-radius: 0 16px 16px 0;
  background: var(--teal-wash);
}

.quote-card.sunny {
  border-left-color: var(--sun);
  background: var(--sun-band);
}

.quote-card p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.quote-card cite {
  display: block;
  margin-top: 10px;
  color: var(--teal-deep);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.founder-section {
  background: var(--teal-band);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 50px;
  align-items: start;
}

.founder-copy p {
  margin-bottom: 14px;
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.75;
}

.founder-copy .text-link {
  margin-top: 4px;
}

.cta-title {
  margin-top: 14px;
}

.cta-reassurance {
  margin-top: 14px;
  color: #7b6c51;
  font-size: 12px;
  font-weight: 700;
}

.host-note {
  margin-top: 30px;
  padding: 18px 22px;
  border: 1px solid var(--teal-soft);
  border-radius: 16px;
  background: var(--teal-wash);
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.sunny-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--sun-band);
}

.sunny-cta .hero-blob {
  position: absolute;
  border-radius: 50%;
}

.sunny-cta .sb1 {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -30px;
  background: var(--sun-soft);
  opacity: 0.55;
}

.sunny-cta .sb2 {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: 60px;
  background: var(--teal-soft);
  opacity: 0.5;
}

.sunny-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.sunny-cta .sec-title {
  margin-bottom: 12px;
}

.sunny-cta .sec-title .ac {
  color: var(--sun-deep);
}

.sunny-cta .sec-sub {
  margin-bottom: 24px;
  color: #6b5d44;
}

.sunny-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* ─── CONTACT ─── */

.contact-wrap {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--sun-soft);
  border-radius: 24px;
  background: var(--sun-band);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-q {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.contact-sub {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-warm);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 500;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(92, 202, 191, 0.18);
}

textarea {
  height: 110px;
  resize: vertical;
}

select {
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-btn {
  width: 100%;
  margin-top: 4px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form-btn:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  margin-top: 14px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
}

.form-reassurance {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 12px;
  text-align: center;
}

.c-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-block {
  padding: 16px 18px;
  border: 1px solid var(--line-warm);
  border-radius: 16px;
  background: #fff;
}

.c-lbl {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.c-val {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.c-val a {
  color: var(--teal-deep);
  text-decoration: none;
}

.c-sub2 {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.c-qr {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal-soft);
  border-radius: 12px;
  background: var(--teal-wash);
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}

.c-resp {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 700;
}

.c-resp::before {
  content: '✓  ';
}


/* ─── FOOTER ─── */

footer {
  padding: 36px 0;
  background: var(--teal-deep);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
}

.footer-mid {
  color: #d4ece9;
  font-size: 13px;
  font-weight: 600;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.footer-ig {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.footer-ig:hover {
  opacity: 1;
}

.footer-copy {
  color: #c0ddda;
  font-size: 12px;
  font-weight: 500;
}


/* ─── ANIMATIONS ─── */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

html:not(.js-ready) .fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ─── MOBILE ─── */

@media (max-width: 900px) {

  .container {
    padding: 0 22px;
  }

  .section {
    padding: 56px 0;
  }

  .nav-inner {
    position: relative;
    padding: 0 22px;
    gap: 10px;
  }

  .nav-brand {
    max-width: 150px;
    font-size: 15px;
    line-height: 1.1;
    white-space: normal;
  }

  .mobile-menu-toggle {
    order: 4;
    display: block;
    flex-shrink: 0;
  }

  .nav-cta {
    order: 3;
    padding: 8px 13px;
    font-size: 11px;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--nav-h) - 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(26, 56, 56, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .hero-inner {
    padding: 48px 22px 56px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-photo,
  .photo-placeholder {
    height: 280px;
  }

  .stat-strip {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line-warm);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .benefit-grid,
  .audience-grid,
  .who-grid,
  .ws-grid,
  .steps-grid,
  .testimonial-columns,
  .contact-grid,
  .proof-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .founder-grid {
    gap: 26px;
  }

  .proof-image {
    height: 280px;
  }

  .section-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .host-note {
    text-align: left;
  }

  .steps-grid {
    gap: 24px;
  }

  .testimonial-columns {
    gap: 18px;
  }

  .project-carousel {
    padding: 0 38px 40px;
  }

  .project-track {
    min-height: 0;
  }

  .project-slide {
    display: none;
  }

  .project-slide.active {
    display: block;
    width: 100%;
    flex: 0 0 100%;
  }

  .project-slide.active .project-slide-content {
    padding-right: 8px;
    padding-left: 8px;
  }

  .project-slide-title {
    font-size: 19px;
  }

  .carousel-arrow {
    top: 36%;
    width: 38px;
    height: 38px;
    font-size: 29px;
    opacity: 0.65;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-overlay {
    padding: 20px;
  }

  .lightbox-close {
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }
}

@media (max-width: 420px) {
  .nav-inner {
    padding: 0 14px;
    gap: 6px;
  }

  .nav-brand {
    max-width: 120px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 8px 10px;
    font-size: 10px;
  }

  .mobile-menu-toggle {
    width: 34px;
    padding-right: 4px;
    padding-left: 4px;
  }
}
