/* ============================================================
   WORLDS IN COMMON — SITE STYLESHEET
   A flexible umbrella identity for a creative research studio.
   ============================================================ */

/* ── Tokens ───────────────────────────────────────────── */
:root {
  --wic-ink:          #1a1a2e;
  --wic-ink-soft:     #2d2d44;
  --wic-dusk:         #5c5c7a;
  --wic-dusk-light:   #8888a4;
  --wic-parchment:    #faf8f5;
  --wic-parchment-mid:#f0ece6;
  --wic-parchment-deep:#e4dfd6;
  --wic-signal:       #c85a38;
  --wic-signal-hover: #b34e2f;
  --wic-signal-light: #f5e0d6;
  --wic-signal-glow:  rgba(200, 90, 56, 0.12);
  --wic-depth:        #1a1a2e;
  --wic-depth-mid:    #252540;
  --wic-depth-text:   #c8c8d8;
  --wic-mist:         #e8e6f0;
  --wic-white:        #ffffff;

  --wic-font-display: 'Fraunces', Georgia, serif;
  --wic-font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --wic-font-mono:    'JetBrains Mono', 'Consolas', monospace;

  --wic-text-xs:   0.75rem;
  --wic-text-sm:   0.875rem;
  --wic-text-base: 1rem;
  --wic-text-md:   1.125rem;
  --wic-text-lg:   1.25rem;
  --wic-text-xl:   1.5rem;
  --wic-text-2xl:  2rem;
  --wic-text-3xl:  2.5rem;
  --wic-text-4xl:  3.25rem;
  --wic-text-5xl:  4rem;

  --wic-leading-tight:   1.15;
  --wic-leading-snug:    1.3;
  --wic-leading-normal:  1.6;
  --wic-leading-relaxed: 1.75;

  --wic-tracking-tight: -0.02em;
  --wic-tracking-caps:   0.08em;

  --wic-space-1:  0.25rem;
  --wic-space-2:  0.5rem;
  --wic-space-3:  0.75rem;
  --wic-space-4:  1rem;
  --wic-space-5:  1.25rem;
  --wic-space-6:  1.5rem;
  --wic-space-8:  2rem;
  --wic-space-10: 2.5rem;
  --wic-space-12: 3rem;
  --wic-space-16: 4rem;
  --wic-space-20: 5rem;
  --wic-space-24: 6rem;
  --wic-space-32: 8rem;

  --wic-max-w:    72rem;
  --wic-max-w-sm: 40rem;
  --wic-max-w-md: 56rem;

  --wic-radius-sm:   0.25rem;
  --wic-radius-md:   0.5rem;
  --wic-radius-lg:   0.75rem;
  --wic-radius-xl:   1rem;
  --wic-radius-full: 9999px;

  --wic-shadow-sm: 0 1px 2px rgba(26,26,46,0.05);
  --wic-shadow-md: 0 4px 12px rgba(26,26,46,0.08);
  --wic-shadow-lg: 0 8px 30px rgba(26,26,46,0.12);

  --wic-ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --wic-ease-out:   cubic-bezier(0, 0, 0.25, 1);
  --wic-ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --wic-dur-fast:   150ms;
  --wic-dur:        300ms;
  --wic-dur-slow:   500ms;
  --wic-dur-reveal: 800ms;
}


/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--wic-font-body);
  font-size: var(--wic-text-base);
  line-height: var(--wic-leading-normal);
  color: var(--wic-ink);
  background: var(--wic-parchment);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }


/* ── Utilities ────────────────────────────────────────── */
.container { max-width: var(--wic-max-w); margin: 0 auto; padding: 0 var(--wic-space-6); }
.container--sm { max-width: var(--wic-max-w-sm); }
.container--md { max-width: var(--wic-max-w-md); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-balance { text-wrap: balance; }


/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--wic-dur-reveal) var(--wic-ease-out),
              transform var(--wic-dur-reveal) var(--wic-ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }
.reveal-d6 { transition-delay: 480ms; }
.reveal-d7 { transition-delay: 560ms; }


/* ════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--wic-dur) var(--wic-ease),
              box-shadow var(--wic-dur) var(--wic-ease);
}
.site-nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  box-shadow: var(--wic-shadow-sm);
}

.site-nav__inner {
  max-width: var(--wic-max-w);
  margin: 0 auto;
  padding: 0 var(--wic-space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-nav__logo {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-lg);
  font-weight: 600;
  color: var(--wic-ink);
  letter-spacing: var(--wic-tracking-tight);
  transition: color var(--wic-dur-fast);
}
.site-nav__logo:hover { color: var(--wic-signal); }

.site-nav__links {
  display: flex;
  gap: var(--wic-space-8);
  align-items: center;
}

.site-nav__link {
  font-size: var(--wic-text-sm);
  font-weight: 500;
  color: var(--wic-dusk);
  transition: color var(--wic-dur-fast);
  position: relative;
}
.site-nav__link:hover,
.site-nav__link--active {
  color: var(--wic-ink);
}
.site-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wic-signal);
  border-radius: 1px;
}

.site-nav__cta {
  font-size: var(--wic-text-sm);
  font-weight: 600;
  color: var(--wic-white);
  background: var(--wic-signal);
  padding: var(--wic-space-2) var(--wic-space-5);
  border-radius: var(--wic-radius-md);
  transition: all var(--wic-dur-fast) var(--wic-ease);
}
.site-nav__cta:hover {
  background: var(--wic-signal-hover);
  transform: translateY(-1px);
  box-shadow: var(--wic-shadow-md);
}

/* Mobile nav toggle */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wic-ink);
  position: absolute;
  left: 9px;
  transition: all var(--wic-dur) var(--wic-ease);
}
.site-nav__toggle span:nth-child(1) { top: 13px; }
.site-nav__toggle span:nth-child(2) { top: 19px; }
.site-nav__toggle span:nth-child(3) { top: 25px; }

.site-nav__toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.site-nav__toggle.open span:nth-child(2) { opacity: 0; }
.site-nav__toggle.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 840px) {
  .site-nav__toggle { display: block; }
  .site-nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wic-parchment);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--wic-space-10) var(--wic-space-6);
    gap: var(--wic-space-6);
    transform: translateX(100%);
    transition: transform var(--wic-dur-slow) var(--wic-ease);
  }
  .site-nav__links.open {
    transform: translateX(0);
  }
  .site-nav__link { font-size: var(--wic-text-lg); }
  .site-nav__link--active::after { bottom: -6px; }
}


/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px; /* nav offset */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--wic-signal-glow), transparent),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200,90,56,0.06), transparent),
    linear-gradient(170deg, var(--wic-parchment) 0%, var(--wic-parchment-mid) 60%, var(--wic-parchment-deep) 100%);
  z-index: 0;
}

/* Subtle grain overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--wic-max-w);
  margin: 0 auto;
  padding: var(--wic-space-20) var(--wic-space-6);
}

.hero__eyebrow {
  font-family: var(--wic-font-body);
  font-size: var(--wic-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--wic-tracking-caps);
  color: var(--wic-signal);
  margin-bottom: var(--wic-space-5);
  animation: fadeUp var(--wic-dur-reveal) var(--wic-ease-out) both;
}

.hero__title {
  font-family: var(--wic-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: var(--wic-leading-tight);
  letter-spacing: var(--wic-tracking-tight);
  color: var(--wic-ink);
  max-width: 16ch;
  margin-bottom: var(--wic-space-6);
  animation: fadeUp var(--wic-dur-reveal) var(--wic-ease-out) 100ms both;
}

.hero__text {
  font-size: var(--wic-text-md);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
  max-width: 48ch;
  margin-bottom: var(--wic-space-10);
  animation: fadeUp var(--wic-dur-reveal) var(--wic-ease-out) 200ms both;
}

.hero__actions {
  display: flex;
  gap: var(--wic-space-4);
  flex-wrap: wrap;
  animation: fadeUp var(--wic-dur-reveal) var(--wic-ease-out) 300ms both;
}

/* Decorative element — a warm line that runs vertically */
.hero__accent {
  position: absolute;
  right: 12%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--wic-signal), transparent);
  opacity: 0.15;
  z-index: 1;
}
@media (max-width: 840px) { .hero__accent { display: none; } }


/* ════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--wic-space-2);
  font-family: var(--wic-font-body);
  font-size: var(--wic-text-sm);
  font-weight: 600;
  line-height: 1;
  padding: var(--wic-space-3) var(--wic-space-6);
  border-radius: var(--wic-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--wic-dur-fast) var(--wic-ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--wic-signal);
  color: var(--wic-white);
  border-color: var(--wic-signal);
}
.btn--primary:hover {
  background: var(--wic-signal-hover);
  border-color: var(--wic-signal-hover);
  transform: translateY(-1px);
  box-shadow: var(--wic-shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--wic-ink);
  border-color: var(--wic-ink);
}
.btn--secondary:hover {
  background: var(--wic-ink);
  color: var(--wic-parchment);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--wic-signal);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--wic-signal-hover); }
.btn--ghost .btn__arrow {
  display: inline-block;
  transition: transform var(--wic-dur-fast) var(--wic-ease);
}
.btn--ghost:hover .btn__arrow { transform: translateX(4px); }

.btn--lg { font-size: var(--wic-text-base); padding: var(--wic-space-4) var(--wic-space-8); }

.btn--white {
  background: var(--wic-white);
  color: var(--wic-ink);
  border-color: var(--wic-white);
}
.btn--white:hover {
  background: var(--wic-parchment);
  border-color: var(--wic-parchment);
  transform: translateY(-1px);
  box-shadow: var(--wic-shadow-md);
}


/* ════════════════════════════════════════════════════════
   SECTION LAYOUT
   ════════════════════════════════════════════════════════ */

.section {
  padding: var(--wic-space-24) 0;
}
.section--alt {
  background: var(--wic-parchment-mid);
}
.section--dark {
  background: var(--wic-depth);
  color: var(--wic-depth-text);
}

.section__eyebrow {
  font-size: var(--wic-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--wic-tracking-caps);
  color: var(--wic-signal);
  margin-bottom: var(--wic-space-4);
}

.section__title {
  font-family: var(--wic-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--wic-ink);
  line-height: var(--wic-leading-snug);
  letter-spacing: var(--wic-tracking-tight);
  margin-bottom: var(--wic-space-3);
}
.section--dark .section__title { color: var(--wic-white); }

.section__desc {
  font-size: var(--wic-text-md);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
  max-width: 52ch;
  margin-bottom: var(--wic-space-12);
}
.section--dark .section__desc { color: var(--wic-depth-text); }

.section__header {
  margin-bottom: var(--wic-space-12);
}
.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__header--center .section__desc {
  margin-left: auto;
  margin-right: auto;
}


/* ════════════════════════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wic-space-6);
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  padding: var(--wic-space-8);
  border-radius: var(--wic-radius-xl);
  background: var(--wic-white);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: all var(--wic-dur) var(--wic-ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wic-signal);
  opacity: 0;
  transition: opacity var(--wic-dur) var(--wic-ease);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--wic-shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-card__num {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-3xl);
  font-weight: 300;
  color: var(--wic-signal);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--wic-space-4);
}

.service-card__title {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-lg);
  font-weight: 600;
  color: var(--wic-ink);
  line-height: var(--wic-leading-snug);
  margin-bottom: var(--wic-space-3);
}

.service-card__text {
  font-size: var(--wic-text-sm);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
  margin-bottom: var(--wic-space-4);
}

.service-card__clients {
  font-size: var(--wic-text-xs);
  color: var(--wic-dusk-light);
  line-height: var(--wic-leading-relaxed);
}
.service-card__clients strong {
  font-weight: 600;
  color: var(--wic-dusk);
}


/* ════════════════════════════════════════════════════════
   PROJECT CARDS
   ════════════════════════════════════════════════════════ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wic-space-8);
}
@media (max-width: 700px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  border-radius: var(--wic-radius-xl);
  overflow: hidden;
  background: var(--wic-white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--wic-dur) var(--wic-ease);
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--wic-shadow-lg);
}

.project-card__visual {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.project-card__visual--silence {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #3a3a5c 100%);
}
.project-card__visual--hospitality {
  background: linear-gradient(135deg, var(--wic-signal) 0%, #a04828 60%, #7a3520 100%);
}

/* Subtle pattern overlay for project cards */
.project-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 9px
  );
}

.project-card__type {
  position: absolute;
  top: var(--wic-space-4);
  left: var(--wic-space-4);
  font-size: var(--wic-text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  padding: var(--wic-space-1) var(--wic-space-3);
  border-radius: var(--wic-radius-full);
  z-index: 1;
}

.project-card__body {
  padding: var(--wic-space-6);
}

.project-card__tags {
  display: flex;
  gap: var(--wic-space-2);
  flex-wrap: wrap;
  margin-bottom: var(--wic-space-3);
}

.tag {
  font-size: var(--wic-text-xs);
  font-weight: 600;
  padding: var(--wic-space-1) var(--wic-space-3);
  border-radius: var(--wic-radius-full);
  background: var(--wic-mist);
  color: var(--wic-dusk);
}
.tag--signal {
  background: var(--wic-signal-light);
  color: var(--wic-signal);
}

.project-card__title {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-xl);
  font-weight: 600;
  color: var(--wic-ink);
  line-height: var(--wic-leading-snug);
  margin-bottom: var(--wic-space-3);
}

.project-card__text {
  font-size: var(--wic-text-sm);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
}


/* ════════════════════════════════════════════════════════
   PARTNERS STRIP
   ════════════════════════════════════════════════════════ */

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wic-space-3);
  justify-content: center;
}

.partner-pill {
  font-size: var(--wic-text-sm);
  font-weight: 500;
  color: var(--wic-dusk);
  background: var(--wic-white);
  padding: var(--wic-space-3) var(--wic-space-5);
  border-radius: var(--wic-radius-full);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--wic-dur) var(--wic-ease);
}
.partner-pill:hover {
  color: var(--wic-ink);
  border-color: var(--wic-signal);
  box-shadow: var(--wic-shadow-sm);
}


/* ════════════════════════════════════════════════════════
   CTA PANEL
   ════════════════════════════════════════════════════════ */

.cta-panel {
  background: var(--wic-depth);
  border-radius: var(--wic-radius-xl);
  padding: var(--wic-space-16) var(--wic-space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,90,56,0.15), transparent 70%);
  pointer-events: none;
}

.cta-panel__title {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-2xl);
  font-weight: 500;
  color: var(--wic-white);
  margin-bottom: var(--wic-space-4);
  position: relative;
}

.cta-panel__text {
  font-size: var(--wic-text-md);
  color: var(--wic-depth-text);
  max-width: 48ch;
  margin: 0 auto var(--wic-space-8);
  line-height: var(--wic-leading-normal);
  position: relative;
}


/* ════════════════════════════════════════════════════════
   APPROACH / METHODOLOGY
   ════════════════════════════════════════════════════════ */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wic-space-8);
}
@media (max-width: 700px) {
  .approach-grid { grid-template-columns: 1fr; }
}

.approach-item__num {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-2xl);
  font-weight: 300;
  color: var(--wic-signal);
  opacity: 0.6;
  margin-bottom: var(--wic-space-3);
}

.approach-item__title {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-lg);
  font-weight: 600;
  color: var(--wic-ink);
  margin-bottom: var(--wic-space-3);
}

.approach-item__text {
  font-size: var(--wic-text-sm);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
}


/* ════════════════════════════════════════════════════════
   TEAM CARDS
   ════════════════════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wic-space-8);
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--wic-white);
  border-radius: var(--wic-radius-xl);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all var(--wic-dur) var(--wic-ease);
}
.team-card:hover {
  box-shadow: var(--wic-shadow-md);
}

.team-card__avatar {
  height: 200px;
  position: relative;
}
.team-card__avatar--cg {
  background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
}
.team-card__avatar--jm {
  background: linear-gradient(135deg, var(--wic-signal) 0%, #a04828 100%);
}
.team-card__avatar-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-5xl);
  font-weight: 300;
  color: rgba(255,255,255,0.15);
}

.team-card__body {
  padding: var(--wic-space-6) var(--wic-space-6) var(--wic-space-8);
}

.team-card__name {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-xl);
  font-weight: 600;
  color: var(--wic-ink);
  margin-bottom: var(--wic-space-2);
}

.team-card__role {
  font-size: var(--wic-text-sm);
  font-weight: 600;
  color: var(--wic-signal);
  margin-bottom: var(--wic-space-4);
}

.team-card__bio {
  font-size: var(--wic-text-sm);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
}


/* ════════════════════════════════════════════════════════
   PARTNER CARDS (Who We Work With page)
   ════════════════════════════════════════════════════════ */

.partner-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--wic-space-6);
}

.partner-card {
  padding: var(--wic-space-6);
  border-radius: var(--wic-radius-lg);
  background: var(--wic-white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--wic-dur) var(--wic-ease);
}
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--wic-shadow-md);
  border-color: var(--wic-signal-light);
}

.partner-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--wic-radius-lg);
  background: var(--wic-signal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--wic-space-4);
  font-family: var(--wic-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wic-signal);
}

.partner-card__title {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-lg);
  font-weight: 600;
  color: var(--wic-ink);
  margin-bottom: var(--wic-space-3);
  line-height: var(--wic-leading-snug);
}

.partner-card__text {
  font-size: var(--wic-text-sm);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
}


/* ════════════════════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════════════════════ */

.contact-form {
  max-width: var(--wic-max-w-sm);
}

.form-group {
  margin-bottom: var(--wic-space-6);
}

.form-label {
  display: block;
  font-size: var(--wic-text-sm);
  font-weight: 600;
  color: var(--wic-ink);
  margin-bottom: var(--wic-space-2);
}
.form-label .optional {
  font-weight: 400;
  color: var(--wic-dusk-light);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--wic-font-body);
  font-size: var(--wic-text-base);
  color: var(--wic-ink);
  background: var(--wic-white);
  border: 1px solid var(--wic-parchment-deep);
  border-radius: var(--wic-radius-md);
  padding: var(--wic-space-3) var(--wic-space-4);
  transition: border-color var(--wic-dur-fast), box-shadow var(--wic-dur-fast);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--wic-signal);
  box-shadow: 0 0 0 3px var(--wic-signal-glow);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235c5c7a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}


/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--wic-depth);
  color: var(--wic-depth-text);
  padding: var(--wic-space-16) 0 var(--wic-space-8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--wic-space-10);
  margin-bottom: var(--wic-space-12);
}
@media (max-width: 840px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--wic-space-8);
  }
}
@media (max-width: 500px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

.site-footer__brand {
  font-family: var(--wic-font-display);
  font-size: var(--wic-text-xl);
  font-weight: 600;
  color: var(--wic-white);
  margin-bottom: var(--wic-space-4);
}

.site-footer__desc {
  font-size: var(--wic-text-sm);
  color: var(--wic-depth-text);
  line-height: var(--wic-leading-normal);
  max-width: 32ch;
}

.site-footer__heading {
  font-size: var(--wic-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--wic-tracking-caps);
  color: var(--wic-dusk-light);
  margin-bottom: var(--wic-space-4);
}

.site-footer__link {
  display: block;
  font-size: var(--wic-text-sm);
  color: var(--wic-depth-text);
  margin-bottom: var(--wic-space-2);
  transition: color var(--wic-dur-fast);
}
.site-footer__link:hover { color: var(--wic-white); }

.site-footer__newsletter-input {
  display: flex;
  gap: var(--wic-space-2);
}
.site-footer__newsletter-input input {
  flex: 1;
  font-family: var(--wic-font-body);
  font-size: var(--wic-text-sm);
  padding: var(--wic-space-2) var(--wic-space-4);
  background: var(--wic-depth-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--wic-radius-md);
  color: var(--wic-white);
  outline: none;
}
.site-footer__newsletter-input input::placeholder { color: var(--wic-dusk-light); }
.site-footer__newsletter-input input:focus {
  border-color: var(--wic-signal);
}
.site-footer__newsletter-input button {
  font-family: var(--wic-font-body);
  font-size: var(--wic-text-sm);
  font-weight: 600;
  color: var(--wic-white);
  background: var(--wic-signal);
  border: none;
  padding: var(--wic-space-2) var(--wic-space-5);
  border-radius: var(--wic-radius-md);
  cursor: pointer;
  transition: background var(--wic-dur-fast);
}
.site-footer__newsletter-input button:hover { background: var(--wic-signal-hover); }

.site-footer__bottom {
  border-top: 1px solid var(--wic-depth-mid);
  padding-top: var(--wic-space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--wic-text-xs);
  color: var(--wic-dusk-light);
  flex-wrap: wrap;
  gap: var(--wic-space-4);
}
.site-footer__bottom a { transition: color var(--wic-dur-fast); }
.site-footer__bottom a:hover { color: var(--wic-white); }


/* ════════════════════════════════════════════════════════
   PAGE HEADERS (inner pages)
   ════════════════════════════════════════════════════════ */

.page-header {
  padding: calc(72px + var(--wic-space-20)) 0 var(--wic-space-16);
  background: linear-gradient(170deg, var(--wic-parchment) 0%, var(--wic-parchment-mid) 100%);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--wic-parchment-deep);
}

.page-header__title {
  font-family: var(--wic-font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--wic-ink);
  line-height: var(--wic-leading-tight);
  letter-spacing: var(--wic-tracking-tight);
  margin-bottom: var(--wic-space-4);
  animation: fadeUp var(--wic-dur-reveal) var(--wic-ease-out) both;
}

.page-header__subtitle {
  font-size: var(--wic-text-md);
  color: var(--wic-dusk);
  line-height: var(--wic-leading-normal);
  max-width: 52ch;
  animation: fadeUp var(--wic-dur-reveal) var(--wic-ease-out) 100ms both;
}


/* ════════════════════════════════════════════════════════
   PROSE (About page body text)
   ════════════════════════════════════════════════════════ */

.prose {
  max-width: var(--wic-max-w-md);
  font-size: var(--wic-text-md);
  line-height: var(--wic-leading-relaxed);
  color: var(--wic-ink-soft);
}
.prose p { margin-bottom: var(--wic-space-6); }
.prose strong { color: var(--wic-ink); font-weight: 600; }
