/* ============================================================
   FOUNDATION.CSS — All sections for Alkebuleum Foundation Inc.
   alkebuleumfoundation.org
   ============================================================ */

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s ease;
}

.nav-kente {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--k1) 0px,  var(--k1) 18px,
    var(--k2) 18px, var(--k2) 36px,
    var(--k3) 36px, var(--k3) 54px,
    var(--k4) 54px, var(--k4) 72px,
    var(--k5) 72px, var(--k5) 90px
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

#nav.scrolled .nav-kente { opacity: 1; }

.nav-body {
  padding: 1.4rem 0;
  transition: padding 0.4s ease, background 0.4s ease;
}

#nav.scrolled .nav-body {
  padding: 0.9rem 0;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(203,178,148,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.logo-svg { width: 30px; height: auto; flex-shrink: 0; }
.logo-wm  { display: flex; flex-direction: column; line-height: 1; }
.logo-a   { font-family: var(--font-display); font-size: 0.95rem; font-weight: 900; letter-spacing: 0.2em; color: var(--ivory); }
.logo-b   { font-family: var(--font-display); font-size: 0.52rem; font-weight: 400; letter-spacing: 0.38em; color: var(--sand-d); margin-top: 3px; }
.logo-c   { font-family: var(--font-ui); font-size: 0.44rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(203,178,148,0.4); margin-top: 2px; }

.nav-ul { display: flex; align-items: center; gap: 2.5rem; }
.nav-ul a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-d);
  transition: color 0.2s ease;
}
.nav-ul a:hover { color: var(--ivory); }

.btn-nav {
  font-family: var(--font-ui);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sand);
  padding: 0.6rem 1.4rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--ivory); }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--sand); transition: transform 0.3s ease, opacity 0.3s ease; }
.ham.x span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.x span:nth-child(2) { opacity: 0; }
.ham.x span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Custom Cursor */
.cur { position: fixed; pointer-events: none; z-index: 9999; top: 0; left: 0; }
.cur-r { width: 8px; height: 8px; background: var(--sand); border-radius: 50%; transform: translate(-50%,-50%); }
.cur-d { width: 28px; height: 28px; border: 1px solid rgba(203,178,148,0.45); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.3s ease, height 0.3s ease; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.f-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 1 !important;
}

.f-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.f-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.f-eyebrow::before,
.f-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.6;
}

.f-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.f-hero-logo {
  width: 70px;
  height: auto;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
  filter: drop-shadow(0 0 20px rgba(203,178,148,0.25));
}

.f-mission {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--sand-d);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.f-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.btn-primary {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sand);
  padding: 1rem 2.4rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s ease;
  display: inline-block;
}
.btn-primary:hover { background: var(--ivory); }

.btn-ghost {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(203,178,148,0.3);
  padding: 1rem 2.4rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(203,178,148,0.08); border-color: var(--sand); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(203,178,148,0.3);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(203,178,148,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.f-section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.f-section-header {
  max-width: 580px;
  margin-bottom: 4rem;
}

.f-section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════
   MISSION — 3 PILLARS
══════════════════════════════════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(203,178,148,0.1);
}

.mission-pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(203,178,148,0.1);
  position: relative;
  transition: background 0.3s ease;
}

.mission-pillar:last-child { border-right: none; }

.mission-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pillar-color, var(--sand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.mission-pillar:hover { background: rgba(255,255,255,0.02); }
.mission-pillar:hover::before { transform: scaleX(1); }

.mp-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(203,178,148,0.07);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.mp-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
}

.mp-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  color: var(--ivory);
}

.mp-desc {
  font-size: 0.95rem;
  color: var(--sand-d);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: rgba(14,79,110,0.06);
  border: 1px solid rgba(14,79,110,0.2);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.program-card:hover {
  border-color: rgba(14,79,110,0.5);
  transform: translateY(-3px);
}

.pc-tag {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
  display: block;
}

.pc-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--ivory);
}

.pc-desc {
  font-size: 0.93rem;
  color: var(--sand-d);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.pc-link {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border-bottom: 1px solid rgba(203,178,148,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.pc-link:hover { border-color: var(--sand); color: var(--ivory); }

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

/* With 5 members: first row 3, second row 2 centered */
.team-grid.members-5 {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid.members-5 .team-card:nth-child(4),
.team-grid.members-5 .team-card:nth-child(5) {
  grid-column: auto;
}

/* Center the last row when it has fewer items */
.team-grid.members-5::after {
  content: '';
  grid-column: span 1;
}

.team-card {
  position: relative;
  border: 1px solid rgba(203,178,148,0.1);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.team-card:hover {
  border-color: rgba(203,178,148,0.3);
}

/* Photo */
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-photo {
  filter: grayscale(0%) contrast(1.08);
  transform: scale(1.02);
}

/* Placeholder for when no photo yet */
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(14,79,110,0.3) 0%, rgba(15,23,42,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-placeholder svg {
  width: 64px; height: 64px;
  opacity: 0.25;
}

/* Sand gradient overlay at bottom */
.team-card-body {
  padding: 1.4rem 1.6rem 1.6rem;
  background: linear-gradient(to bottom, rgba(15,23,42,0.0) 0%, rgba(15,23,42,1) 100%);
  position: relative;
}

/* Decorative top line */
.team-card-body::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 0.85rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}

.team-role {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.85rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--sand-d);
  line-height: 1.75;
}

/* Social links */
.team-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.team-socials a {
  width: 28px; height: 28px;
  border: 1px solid rgba(203,178,148,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.team-socials a:hover { border-color: var(--sand); }
.team-socials svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════
   THE CHAIN — bridge section
══════════════════════════════════════════ */
.chain-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14,79,110,0.07) 50%, transparent 100%);
  border-top: 1px solid rgba(14,79,110,0.15);
  border-bottom: 1px solid rgba(14,79,110,0.15);
  z-index: 1;
  position: relative;
}

.chain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.chain-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chain-logo-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(203,178,148,0.2));
  animation: fl 6s ease-in-out infinite;
}

.chain-logo-ring {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(203,178,148,0.1);
  animation: spin 30s linear infinite;
}

.chain-logo-ring::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  top: 50%; right: -3px;
  transform: translateY(-50%);
}

.chain-copy .sl { margin-bottom: 0.5rem; }
.chain-copy h2 { margin-bottom: 1.2rem; }
.chain-copy p  { color: var(--sand-d); margin-bottom: 2rem; }

.chain-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.cs-item { display: flex; flex-direction: column; }
.cs-v {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.05em;
}
.cs-l {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(203,178,148,0.45);
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════
   NEWS / UPDATES
══════════════════════════════════════════ */
.news-section {
  padding: var(--space-xl) 0;
  z-index: 1;
  position: relative;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.news-link-all {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-d);
  border-bottom: 1px solid rgba(203,178,148,0.25);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.news-link-all:hover { color: var(--ivory); }

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

.news-card {
  border: 1px solid rgba(203,178,148,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  border-color: rgba(203,178,148,0.2);
  background: rgba(255,255,255,0.02);
}

.nc-date {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(203,178,148,0.4);
  margin-bottom: 0.85rem;
}

.nc-tag {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.nc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 0.85rem;
  flex: 1;
}

.nc-excerpt {
  font-size: 0.88rem;
  color: var(--sand-d);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.nc-read {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-d);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.news-card:hover .nc-read { color: var(--sand); }
.nc-read::after { content: '→'; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(203,178,148,0.07);
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
  z-index: 1;
}

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

.ft-brand .logo { margin-bottom: 1.2rem; }
.ft-brand p { font-size: 0.9rem; color: var(--sand-d); line-height: 1.85; max-width: 290px; margin-bottom: 1.2rem; }

.ft-contact {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(203,178,148,0.45);
}

.ft-contact a { color: var(--sand-d); transition: color 0.2s; }
.ft-contact a:hover { color: var(--ivory); }

.ft-col h5 {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.4rem;
}

.ft-col ul li { margin-bottom: 0.65rem; }
.ft-col ul a { font-size: 0.9rem; color: var(--sand-d); transition: color 0.2s ease; }
.ft-col ul a:hover { color: var(--ivory); }

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(203,178,148,0.07);
  gap: 1rem;
  flex-wrap: wrap;
}

.ft-copy {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(203,178,148,0.3);
}

.ft-legal {
  display: flex;
  gap: 1.5rem;
}

.ft-legal a {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(203,178,148,0.3);
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.ft-legal a:hover { color: var(--sand-d); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mission-grid    { grid-template-columns: 1fr 1fr; }
  .mission-pillar:nth-child(2) { border-right: none; }
  .mission-pillar:nth-child(3) { border-top: 1px solid rgba(203,178,148,0.1); grid-column: 1 / -1; border-right: none; }
  .programs-grid   { grid-template-columns: 1fr 1fr; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
  .team-grid.members-5::after { display: none; }
  .chain-inner     { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .chain-logo      { order: -1; }
  .chain-stats     { justify-content: center; }
  .news-grid       { grid-template-columns: 1fr 1fr; }
  .ft-grid         { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,23,42,0.98); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(203,178,148,0.08); }
  .nav-ul.open { display: flex; }
  .btn-nav { display: none; }
  .ham { display: flex; }
  .f-section { padding: 4rem 0; }
  .f-section-header { margin-bottom: 2.5rem; }
  .mission-grid  { grid-template-columns: 1fr; }
  .mission-pillar { border-right: none; border-bottom: 1px solid rgba(203,178,148,0.1); padding: 2rem 1.5rem; }
  .mission-pillar:last-child { border-bottom: none; }
  .mission-pillar:nth-child(3) { grid-column: auto; border-top: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .team-photo    { aspect-ratio: 1/1; }
  .team-card-body { padding: 1rem 1rem 1.2rem; }
  .team-name     { font-size: 0.95rem; }
  .team-role     { font-size: 0.5rem; }
  .news-grid     { grid-template-columns: 1fr; }
  .news-header   { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .chain-section { padding: 4rem 0; }
  .chain-logo-ring { width: 180px; height: 180px; }
  .chain-logo-img  { width: 120px; }
  .ft-grid       { grid-template-columns: 1fr 1fr; }
  .ft-bottom     { flex-direction: column; text-align: center; }
  .ft-legal      { justify-content: center; }
}

@media (max-width: 520px) {
  .f-hero { padding: 8rem 1.5rem 5rem; }
  .wrap   { padding: 0 1.25rem; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .team-photo { aspect-ratio: 1/1; }
  .ft-grid   { grid-template-columns: 1fr; }
  .chain-stats { flex-direction: column; gap: 1.2rem; }
  .f-hero-actions { flex-direction: column; align-items: center; }
  .news-section { padding: 4rem 0; }
}

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

/* ══════════════════════════════════════════
   PROGRAM CARD ACCORDION
══════════════════════════════════════════ */
.pc-expand {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}

.pc-expand.open {
  max-height: 800px;
}

.pc-expand-inner {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(203,178,148,0.1);
  margin-top: 1.2rem;
}

.pc-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 0;
  transition: color 0.2s ease;
}

.pc-toggle:hover { color: var(--ivory); }

.pc-toggle-icon {
  width: 14px; height: 14px;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.pc-toggle[aria-expanded="true"] .pc-toggle-icon {
  transform: rotate(180deg);
}



.pc-toggle-label { font-size: 0.62rem; }
