/* ==========================================================
   KikiBasket — Shared Pages CSS
   Nav · Footer · Animations · About · Feedback · Contact
   ========================================================== */

/* ---------- Design System Variables ---------- */
:root {
  --cream: #FDF0E3;
  --orange: #E2601A;
  --orange-light: #F07B3A;
  --orange-pale: #FDDCC4;
  --brown: #4A2A0F;
  --brown-mid: #7A4A20;
  --dark: #2E1A06;
  --white: #FFFAF5;
}

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

/* ---------- Base Reset for New Pages ---------- */
.kb-page {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--brown);
  background: var(--cream);
  min-height: 100vh;
  margin: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.kb-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 2px solid var(--orange-pale);
}

.kb-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Logo */
.kb-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.kb-nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.kb-nav__logo-text {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.03em;
}

/* Search */
.kb-nav__search {
  position: relative;
  max-width: 280px;
  flex: 1;
}

.kb-nav__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--brown-mid);
  width: 16px;
  height: 16px;
}

.kb-nav__search input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--orange-pale);
  background: var(--white);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s ease;
}

.kb-nav__search input:focus {
  border-color: var(--orange);
}

/* Links */
.kb-nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.kb-nav__links a {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown-mid);
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.15s ease;
  white-space: nowrap;
}

.kb-nav__links a:hover {
  color: var(--orange);
  background: rgba(226, 96, 26, 0.08);
}

.kb-nav__links a.active {
  color: var(--orange);
}

/* Hamburger */
.kb-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
}

.kb-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.kb-nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.kb-nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.kb-nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   FOOTER
   ============================================================ */

.kb-footer {
  background: var(--dark);
  text-align: center;
  padding: 2rem 1.5rem;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 250, 245, 0.6);
}

.kb-footer strong {
  color: var(--orange);
  font-weight: 700;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

.kb-section-tag {
  display: inline-block;
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(226, 96, 26, 0.1);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.kb-section-tag--light {
  color: rgba(255, 250, 245, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.kb-section-tag--dark {
  color: var(--orange-pale);
  background: rgba(253, 220, 196, 0.15);
}

.kb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}

.kb-btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(226, 96, 26, 0.38);
}

.kb-btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(226, 96, 26, 0.48);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero Band */
.about-hero {
  background: var(--orange);
  padding: 4.5rem clamp(1.5rem, 6vw, 4rem);
  animation: fadeUp 0.5s ease both;
}

.about-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}

.about-hero__sub {
  color: rgba(255, 250, 245, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

/* Polaroids */
.about-hero__polaroids {
  position: relative;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polaroid {
  position: absolute;
  background: white;
  padding: 10px 10px 34px;
  border-radius: 3px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  width: 150px;
}

.polaroid:nth-child(1) { transform: rotate(-3deg) translate(-85px, 12px); }
.polaroid:nth-child(2) { transform: rotate(2deg) translate(0, -18px); z-index: 2; }
.polaroid:nth-child(3) { transform: rotate(-1.5deg) translate(82px, 22px); }

.polaroid svg {
  width: 100%;
  height: 110px;
  display: block;
  border-radius: 2px;
}

/* Mission Card */
.about-mission {
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  animation: fadeUp 0.5s 0.1s ease both;
}

.about-mission__card {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  box-shadow: 0 10px 40px rgba(74, 42, 15, 0.1);
}

.about-mission__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--brown);
  margin: 0.5rem 0 1rem;
}

.about-mission__text {
  color: var(--brown-mid);
  line-height: 1.7;
  margin: 0 0 0.9rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
  padding-left: 1.5rem;
  border-left: 2px solid var(--orange-pale);
}

.about-stat__number {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
}

.about-stat__label {
  font-size: 0.88rem;
  color: var(--brown-mid);
  font-weight: 700;
  margin-top: 0.2rem;
}

/* Cuisines */
.about-cuisines {
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  text-align: center;
  animation: fadeUp 0.5s 0.15s ease both;
}

.about-cuisines__inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-cuisines__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--brown);
  margin: 0.5rem 0 1rem;
}

.about-cuisines__lead {
  color: var(--brown-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.about-cuisines__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cuisine-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--orange-pale);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown);
}

.cuisine-chip--muted {
  opacity: 0.6;
  pointer-events: none;
}

/* How It Works */
.about-how {
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  text-align: center;
  animation: fadeUp 0.5s 0.2s ease both;
}

.about-how__tag-wrap { text-align: center; }

.about-how__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--brown);
  margin: 0.5rem 0 2.5rem;
}

.about-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 940px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(74, 42, 15, 0.07);
  border: 2px solid var(--orange-pale);
}

.step-card__number {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--orange-pale);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.step-card__icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.step-card h3 {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  margin: 0 0 0.5rem;
}

.step-card p {
  color: var(--brown-mid);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Food Program Callout */
.about-programs {
  background: var(--dark);
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  animation: fadeUp 0.5s 0.25s ease both;
}

.about-programs__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-programs__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}

.about-programs__text {
  color: rgba(255, 250, 245, 0.72);
  line-height: 1.7;
  margin: 0;
}

.about-programs__badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.08);
  border: 1.5px solid rgba(255, 250, 245, 0.18);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Story Section */
.about-story {
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  animation: fadeUp 0.5s 0.1s ease both;
}

.about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-story__illustration {
  border-radius: 20px;
  overflow: hidden;
  background: #FFF5E8;
}

.about-story__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-story__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--brown);
  margin: 0.5rem 0 1.25rem;
}

.about-story__text {
  color: var(--brown-mid);
  line-height: 1.7;
  margin: 0 0 1rem;
}

/* CTA Strip */
.about-cta {
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  animation: fadeUp 0.5s 0.15s ease both;
}

.about-cta__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.about-cta__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.about-cta__sub {
  color: rgba(255, 250, 245, 0.7);
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

/* ============================================================
   FEEDBACK PAGE
   ============================================================ */

.feedback-header {
  padding: 4rem clamp(1.5rem, 6vw, 4rem) 2rem;
  animation: fadeUp 0.5s ease both;
}

.feedback-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feedback-header__heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--brown);
  margin: 0.5rem 0 1rem;
}

.feedback-header__text {
  color: var(--brown-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.feedback-header__illustration {
  display: flex;
  justify-content: center;
}

.feedback-header__illustration svg {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* Form Card */
.feedback-form-wrap {
  padding: 0 clamp(1.5rem, 6vw, 4rem) 4rem;
  animation: fadeUp 0.5s 0.1s ease both;
}

.feedback-form-wrap__inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(74, 42, 15, 0.1);
  overflow: hidden;
}

.form-section {
  padding: 2rem 2.5rem;
  border-bottom: 2px solid var(--orange-pale);
}

.form-section:last-child {
  border-bottom: none;
}

.form-section__title {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--brown);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 12px;
  border: 2px solid #DDD0C0;
  padding: 0.7rem 1rem;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(226, 96, 26, 0.14);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%234A2A0F' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* Star Rating */
.star-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.star-rating__star {
  font-size: 2.2rem;
  cursor: pointer;
  color: #DDD0C0;
  transition: color 0.14s ease, transform 0.14s ease;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.star-rating__star.active {
  color: var(--orange);
  transform: scale(1.1);
}

/* Habit Chips */
.habit-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.habit-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 2px solid #DDD0C0;
  background: var(--white);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--brown);
  cursor: pointer;
  transition: all 0.15s ease;
  justify-content: center;
}

.habit-chip.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Range Slider */
.range-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-header label {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.range-value {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--orange);
}

input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: var(--orange-pale);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(226, 96, 26, 0.4);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(226, 96, 26, 0.4);
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.kb-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--brown);
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.kb-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}

/* Form Footer */
.feedback-form-footer {
  padding: 1.25rem 2.5rem;
  border-top: 2px solid var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(253, 240, 227, 0.4);
}

.feedback-form-footer__disclaimer {
  font-size: 0.8rem;
  color: var(--brown-mid);
  margin: 0;
  max-width: 380px;
  line-height: 1.5;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  padding: 3.5rem clamp(1.5rem, 6vw, 4rem) 5rem;
}

.contact-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-left {
  animation: fadeUp 0.5s ease both;
}

.contact-heading {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--brown);
  margin: 0.5rem 0 1rem;
}

.contact-lead {
  color: var(--brown-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.contact-email-box {
  background: var(--dark);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-email-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-email-box__label {
  font-size: 0.75rem;
  color: rgba(255, 250, 245, 0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.2rem;
}

.contact-email-box__address {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange-pale);
  margin: 0;
}

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

.contact-info-card {
  background: var(--white);
  border: 2px solid var(--orange-pale);
  border-radius: 16px;
  padding: 1.2rem;
}

.contact-info-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-card h3 {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown);
  margin: 0 0 0.35rem;
}

.contact-info-card p {
  font-size: 0.83rem;
  color: var(--brown-mid);
  margin: 0;
  line-height: 1.5;
}

/* Email Composer */
.contact-right {
  animation: fadeUp 0.5s 0.1s ease both;
}

.email-composer {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(74, 42, 15, 0.12);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.email-composer__topbar {
  background: var(--dark);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.composer-dots {
  display: flex;
  gap: 6px;
}

.composer-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.composer-dot--red    { background: #FF5F57; }
.composer-dot--yellow { background: #FEBC2E; }
.composer-dot--green  { background: #28C840; }

.email-composer__topbar-label {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255, 250, 245, 0.55);
  margin-left: 0.4rem;
}

.email-composer__to {
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--orange-pale);
  font-size: 0.83rem;
  color: var(--brown-mid);
  font-weight: 700;
}

.email-composer__to span {
  color: var(--brown);
  font-weight: 600;
}

.composer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--orange-pale);
}

.composer-chip {
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  border: 1.5px solid var(--orange-pale);
  background: transparent;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.4;
}

.composer-chip.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.email-composer__subject {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: none;
  border-bottom: 1px solid var(--orange-pale);
  background: transparent;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  outline: none;
  box-sizing: border-box;
}

.email-composer__subject::placeholder { color: #C0A898; }

.email-composer__body {
  width: 100%;
  min-height: 180px;
  padding: 0.85rem 1.2rem;
  border: none;
  border-bottom: 1px solid var(--orange-pale);
  background: transparent;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}

.email-composer__body::placeholder { color: #C0A898; }

.email-composer__from {
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--orange-pale);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--brown-mid);
  font-weight: 700;
}

.email-composer__from-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.83rem;
  color: var(--brown);
  outline: none;
}

.email-composer__from-input::placeholder { color: #C0A898; }

.email-composer__send {
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.email-composer__hint {
  font-size: 0.78rem;
  color: var(--brown-mid);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  /* Nav */
  .kb-nav__search { display: none; }

  .kb-nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .kb-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--orange-pale);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.1rem;
    margin: 0;
    z-index: 99;
  }

  .kb-nav__links.open { display: flex; }

  .kb-nav__links a {
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .kb-nav { position: sticky; top: 0; }

  /* About */
  .about-hero__inner,
  .about-mission__card,
  .about-programs__inner,
  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__polaroids {
    height: 210px;
    margin-top: 0.5rem;
  }

  .polaroid { width: 130px; }
  .polaroid:nth-child(1) { transform: rotate(-3deg) translate(-72px, 10px); }
  .polaroid:nth-child(2) { transform: rotate(2deg) translate(0, -14px); }
  .polaroid:nth-child(3) { transform: rotate(-1.5deg) translate(70px, 18px); }

  .about-how__steps { grid-template-columns: 1fr; }

  .about-stats {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--orange-pale);
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  /* Feedback */
  .feedback-header__inner { grid-template-columns: 1fr; }
  .feedback-header__illustration { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .habit-chips { grid-template-columns: repeat(2, 1fr); }

  .feedback-form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .form-section { padding: 1.5rem; }

  /* Contact */
  .contact-page__inner { grid-template-columns: 1fr; }
  .email-composer { position: static; }
  .contact-info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .habit-chips { grid-template-columns: repeat(2, 1fr); }

  .about-hero__polaroids { height: 170px; }
  .polaroid { width: 110px; }
  .polaroid:nth-child(1) { transform: rotate(-3deg) translate(-60px, 8px); }
  .polaroid:nth-child(2) { transform: rotate(2deg) translate(0, -10px); }
  .polaroid:nth-child(3) { transform: rotate(-1.5deg) translate(58px, 14px); }

  .about-mission__card { padding: 1.5rem; }
  .checkbox-grid { grid-template-columns: 1fr; }

  .contact-info-cards { grid-template-columns: 1fr; }
}
